Kaydet (Commit) 4d00131b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Reduce variable scope

Change-Id: I87850db982f413b328976e043d8386b7577ba17c
üst d52d448e
...@@ -501,10 +501,9 @@ SbiExprNode* SbiExpression::ObjTerm( SbiSymDef& rObj ) ...@@ -501,10 +501,9 @@ SbiExprNode* SbiExpression::ObjTerm( SbiSymDef& rObj )
SbiExprNode* SbiExpression::Operand( bool bUsedForTypeOf ) SbiExprNode* SbiExpression::Operand( bool bUsedForTypeOf )
{ {
SbiExprNode *pRes; SbiExprNode *pRes;
SbiToken eTok;
// test operand: // test operand:
switch( eTok = pParser->Peek() ) switch( SbiToken eTok = pParser->Peek() )
{ {
case SYMBOL: case SYMBOL:
pRes = Term(); pRes = Term();
......
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