diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Conf.cpp | 2 |
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; |