From ae2bc3c8d6754f7e0fc6d81aae1a35af4c45af08 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Wed, 8 Nov 2006 23:44:59 +0000 Subject: [PATCH] Do not print ; in thrift parser Reviewed By: bizsys d00dz git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664867 13f79535-47bb-0310-9956-ffa450edef68 --- compiler/cpp/src/thrift.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cpp/src/thrift.l b/compiler/cpp/src/thrift.l index 839060e9..e93bd26e 100644 --- a/compiler/cpp/src/thrift.l +++ b/compiler/cpp/src/thrift.l @@ -33,7 +33,7 @@ whitespace ([ \t\r\n]*) multicomm ("/*""/"*([^*/]|[^*]"/"|"*"[^/])*"*"*"*/") comment ("//"[^\n]*) unixcomment ("#"[^\n]*) -symbol ([:\,\{\}\(\)\=<>\[\]]) +symbol ([:;\,\{\}\(\)\=<>\[\]]) literal ("\""[^"]*"\"") %% -- 2.17.1