You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2011/08/22 23:38:17 UTC

svn commit: r1160451 - /thrift/trunk/compiler/cpp/src/thriftl.ll

Author: roger
Date: Mon Aug 22 21:38:16 2011
New Revision: 1160451

URL: http://svn.apache.org/viewvc?rev=1160451&view=rev
Log:
THRIFT-1274 Making * a known symbol

Modified:
    thrift/trunk/compiler/cpp/src/thriftl.ll

Modified: thrift/trunk/compiler/cpp/src/thriftl.ll
URL: http://svn.apache.org/viewvc/thrift/trunk/compiler/cpp/src/thriftl.ll?rev=1160451&r1=1160450&r2=1160451&view=diff
==============================================================================
--- thrift/trunk/compiler/cpp/src/thriftl.ll (original)
+++ thrift/trunk/compiler/cpp/src/thriftl.ll Mon Aug 22 21:38:16 2011
@@ -108,6 +108,7 @@ literal_begin (['\"])
 {unixcomment}        { /* do nothing */                 }
 
 {symbol}             { return yytext[0];                }
+"*"                  { return yytext[0];                }
 
 "namespace"          { return tok_namespace;            }
 "cpp_namespace"      { return tok_cpp_namespace;        }