Move a few of the zeek::util methods and variables to zeek::util::detail

This commit is contained in:
Tim Wojtulewicz 2020-08-06 15:45:42 -07:00
parent 5a2ac84eee
commit ddf48d7529
35 changed files with 1221 additions and 1226 deletions

View file

@ -212,7 +212,7 @@ CCL_EXPR ("[:"[[:alpha:]]+":]")
<INITIAL,SC_QUOTE,SC_FIRST_CCL,SC_CCL>{ESCSEQ} {
const char* esc_text = yytext + 1;
yylval.int_val = zeek::util::expand_escape(esc_text);
yylval.int_val = zeek::util::detail::expand_escape(esc_text);
if ( YY_START == SC_FIRST_CCL )
BEGIN(SC_CCL);