Allow square brackets to be used in operator names
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
fbb021386c
commit
57b9a4f2b3
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public:
|
|||
set('_', 'a');
|
||||
|
||||
// characters that can be used to create ids of group b
|
||||
for (unsigned char b : {'=', '<', '>', '@', '^', '|', '&', '~', '+', '-', '*', '/', '\\', '$', '%', '?', ';'})
|
||||
for (unsigned char b : {'=', '<', '>', '@', '^', '|', '&', '~', '+', '-', '*', '/', '\\', '$', '%', '?', ';', '[', ']'})
|
||||
set(b, 'b');
|
||||
|
||||
// punctuation
|
||||
|
|
Loading…
Reference in a new issue