diff --git a/SConstruct b/SConstruct index 68abb178c..3c02c2d00 100644 --- a/SConstruct +++ b/SConstruct @@ -4163,7 +4163,7 @@ class DXXCommon(LazyObjectConstructor): prior = False for c in f(s): # No xdigit support in str - if c in ' ()*+,-./:=[]_' or (c.isalnum() and not (prior and (c.isdigit() or c in 'abcdefABCDEF'))): + if c in '+,-./:=_' or (c.isalnum() and not (prior and (c.isdigit() or c in 'abcdefABCDEF'))): r += c elif c == '\n': r += r'\n'