]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[trac5110] regen flex/bison files using flex 2.6.3
authorFrancis Dupont <fdupont@isc.org>
Wed, 1 Feb 2017 14:29:08 +0000 (14:29 +0000)
committerFrancis Dupont <fdupont@isc.org>
Wed, 1 Feb 2017 14:29:08 +0000 (14:29 +0000)
src/bin/d2/d2_lexer.cc
src/bin/dhcp4/dhcp4_lexer.cc
src/bin/dhcp6/dhcp6_lexer.cc

index c35e6b9815409a409af07c049fe2bbd83ec25050..09f4ba3603b4516965995666f9d106188f1e1179 100644 (file)
@@ -3518,7 +3518,7 @@ D2ParserContext::scanStringBegin(const std::string& str, ParserType parser_type)
     loc_.initialize(&file_);
     yy_flex_debug = trace_scanning_;
     YY_BUFFER_STATE buffer;
-    buffer = yy_scan_bytes(str.c_str(), str.size());
+    buffer = d2_parser__scan_bytes(str.c_str(), str.size());
     if (!buffer) {
         fatal("cannot scan string");
         // fatal() throws an exception so this can't be reached
index a0dbb8927f3514abac3abe69cdbe951fe6150fbc..e2dd694d0fca55de10e1817273a2d1fb122b6b0b 100644 (file)
@@ -4673,7 +4673,7 @@ Parser4Context::scanStringBegin(const std::string& str, ParserType parser_type)
     loc_.initialize(&file_);
     yy_flex_debug = trace_scanning_;
     YY_BUFFER_STATE buffer;
-    buffer = yy_scan_bytes(str.c_str(), str.size());
+    buffer = parser4__scan_bytes(str.c_str(), str.size());
     if (!buffer) {
         fatal("cannot scan string");
         // fatal() throws an exception so this can't be reached
index 2c904769f162572fc18522cb02cb2dc05107f481..c218b065991bac2d388d3985b7296acfd9e317ef 100644 (file)
@@ -4753,7 +4753,7 @@ Parser6Context::scanStringBegin(const std::string& str, ParserType parser_type)
     loc_.initialize(&file_);
     yy_flex_debug = trace_scanning_;
     YY_BUFFER_STATE buffer;
-    buffer = yy_scan_bytes(str.c_str(), str.size());
+    buffer = parser6__scan_bytes(str.c_str(), str.size());
     if (!buffer) {
         fatal("cannot scan string");
         // fatal() throws an exception so this can't be reached