diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-09-12 01:23:02 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | 078fe50351224d28592f1b2907585bd4fa551adf (patch) | |
tree | 7ff210565c56a72c4432247f5065c0a4afc46ff0 /src | |
parent | 8476736418d287cb9e652c3c886211699ddb49be (diff) |
Allow '+' character in dependency name
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; |