From 53e7d74ce324f28418f87a45ec78eaa286d88c9d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Jun 2015 11:15:34 -0700 Subject: [PATCH] CLI2: With Lexer::Type::string args, there is no need to insert quotes --- src/CLI2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 6226ff87b..84f231619 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1475,7 +1475,7 @@ void CLI2::insertIDExpr () reconstructed.push_back (argUUID); reconstructed.push_back (opSimilar); - A2 value ("'" + *u + "'", Lexer::Type::string); + A2 value (*u, Lexer::Type::string); value.tag ("FILTER"); reconstructed.push_back (value);