aboutsummaryrefslogtreecommitdiff
path: root/src/Conf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Conf.cpp')
-rw-r--r--src/Conf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp
index c71c7bc..6a8de19 100644
--- a/src/Conf.cpp
+++ b/src/Conf.cpp
@@ -189,7 +189,7 @@ namespace sibs
bool isIdentifierChar(u32 c)
{
- return isAlpha(c) || isDigit(c) || c == '_' || c == '-' || c == '.';
+ return isAlpha(c) || isDigit(c) || c == '_' || c == '-' || c == '.' || c == '+';
}
private:
u8string code;