feat(frontends/lean/scanner): allow '#' to be used in class B identifiers
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
96dcd003c6
commit
fdea8aba10
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,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