aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-09-12 01:23:02 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commit078fe50351224d28592f1b2907585bd4fa551adf (patch)
tree7ff210565c56a72c4432247f5065c0a4afc46ff0 /src
parent8476736418d287cb9e652c3c886211699ddb49be (diff)
Allow '+' character in dependency name
Diffstat (limited to 'src')
-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;