Commit ac23189b by alokp@chromium.org

Removed redundant dereference. Patch submitted by timeless.

BUG=64 Review URL: http://codereview.appspot.com/2495041 git-svn-id: https://angleproject.googlecode.com/svn/trunk@450 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 6c82cafe
...@@ -224,8 +224,7 @@ void RecordToken(TokenStream *pTok, int token, yystypepp * yylvalpp) ...@@ -224,8 +224,7 @@ void RecordToken(TokenStream *pTok, int token, yystypepp * yylvalpp)
case CPP_INTCONSTANT: case CPP_INTCONSTANT:
str=yylvalpp->symbol_name; str=yylvalpp->symbol_name;
while (*str){ while (*str){
lAddByte(pTok,(unsigned char) *str); lAddByte(pTok, (unsigned char) *str++);
*str++;
} }
lAddByte(pTok, 0); lAddByte(pTok, 0);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment