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
diff --git a/compiler/cpp/src/thrift.l b/compiler/cpp/src/thrift.l
index 839060e..e93bd26 100644
--- a/compiler/cpp/src/thrift.l
+++ b/compiler/cpp/src/thrift.l
@@ -33,7 +33,7 @@
 multicomm    ("/*""/"*([^*/]|[^*]"/"|"*"[^/])*"*"*"*/")
 comment      ("//"[^\n]*)
 unixcomment  ("#"[^\n]*)
-symbol       ([:\,\{\}\(\)\=<>\[\]])
+symbol       ([:;\,\{\}\(\)\=<>\[\]])
 literal      ("\""[^"]*"\"")
 
 %%