From: Francis Dupont Date: Wed, 1 Feb 2017 14:29:08 +0000 (+0000) Subject: [trac5110] regen flex/bison files using flex 2.6.3 X-Git-Tag: trac1205_base^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bae9fe5f29ede1341de0411de0249121b461fa25;p=thirdparty%2Fkea.git [trac5110] regen flex/bison files using flex 2.6.3 --- diff --git a/src/bin/d2/d2_lexer.cc b/src/bin/d2/d2_lexer.cc index c35e6b9815..09f4ba3603 100644 --- a/src/bin/d2/d2_lexer.cc +++ b/src/bin/d2/d2_lexer.cc @@ -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 diff --git a/src/bin/dhcp4/dhcp4_lexer.cc b/src/bin/dhcp4/dhcp4_lexer.cc index a0dbb8927f..e2dd694d0f 100644 --- a/src/bin/dhcp4/dhcp4_lexer.cc +++ b/src/bin/dhcp4/dhcp4_lexer.cc @@ -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 diff --git a/src/bin/dhcp6/dhcp6_lexer.cc b/src/bin/dhcp6/dhcp6_lexer.cc index 2c904769f1..c218b06599 100644 --- a/src/bin/dhcp6/dhcp6_lexer.cc +++ b/src/bin/dhcp6/dhcp6_lexer.cc @@ -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