mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 03:55:29 +00:00
Fix #275
This commit is contained in:
parent
abac8288f3
commit
6c1089bda6
BIN
docs/native.wasm
BIN
docs/native.wasm
Binary file not shown.
2
peglib.h
2
peglib.h
@ -3325,7 +3325,7 @@ private:
|
||||
g["NegatedClass"], g["ClassI"], g["Class"], g["DOT"]);
|
||||
|
||||
g["Identifier"] <= seq(g["IdentCont"], g["Spacing"]);
|
||||
g["IdentCont"] <= seq(g["IdentStart"], zom(g["IdentRest"]));
|
||||
g["IdentCont"] <= tok(seq(g["IdentStart"], zom(g["IdentRest"])));
|
||||
|
||||
const static std::vector<std::pair<char32_t, char32_t>> range = {
|
||||
{0x0080, 0xFFFF}};
|
||||
|
Loading…
Reference in New Issue
Block a user