comparison libinterp/parse-tree/lex.ll @ 25646:4d565baa475e

move libinterp/utils functions inside octave namespace * utils.h, utils.cc: Move functions inside octave namespace. Change all uses.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Jul 2018 16:55:47 -0400
parents 2fa7cd178c4a
children ca38400776bc
comparison
equal deleted inserted replaced
25645:0214d9dabba2 25646:4d565baa475e
1752 else 1752 else
1753 { 1753 {
1754 std::ostringstream buf; 1754 std::ostringstream buf;
1755 1755
1756 buf << "invalid character '" 1756 buf << "invalid character '"
1757 << undo_string_escape (static_cast<char> (c)) 1757 << octave::undo_string_escape (static_cast<char> (c))
1758 << "' (ASCII " << c << ")"; 1758 << "' (ASCII " << c << ")";
1759 1759
1760 octave::token *tok 1760 octave::token *tok
1761 = new octave::token (LEXICAL_ERROR, buf.str (), 1761 = new octave::token (LEXICAL_ERROR, buf.str (),
1762 curr_lexer->m_input_line_number, 1762 curr_lexer->m_input_line_number,