aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-09-29 15:06:46 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commit19370a2213efe960e959832145a165d6e2ad6a65 (patch)
tree6402a23b3486e5519884465130f0684394a73f19 /src
parenta5eeb97292ed084d0da3a02d7057d6f72219e6b9 (diff)
Fix no return type in function because gcc is stupid
Diffstat (limited to 'src')
-rw-r--r--src/Conf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp
index 8dc4e7c..bad3c01 100644
--- a/src/Conf.cpp
+++ b/src/Conf.cpp
@@ -1201,6 +1201,7 @@ namespace sibs
}
else
failInvalidFieldUnderObject(fieldName);
+ return "";
}
void SibsConfig::parsePlatformConfigStaticDebug(const StringView &fieldName, const ConfigValue &fieldValue)