From cfc96995b4d362fa43d5525acb82593621ec4627 Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Thu, 19 May 2016 13:12:40 -0700 Subject: [PATCH] Include comment about string_operator_t --- src/object-store/src/parser/parser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/object-store/src/parser/parser.cpp b/src/object-store/src/parser/parser.cpp index 88f2a9f0..07b97bb4 100644 --- a/src/object-store/src/parser/parser.cpp +++ b/src/object-store/src/parser/parser.cpp @@ -24,6 +24,7 @@ #include #include +// String operators (e.g. AND, OR, NOT) can't be followed by [A-z0-9_]. #define string_operator_t(s) seq< pegtl_istring_t(s), not_at< identifier_other > > using namespace pegtl;