diff options
Diffstat (limited to 'autodoc')
-rw-r--r-- | autodoc/source/parser/cpp/cx_c_pp.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/autodoc/source/parser/cpp/cx_c_pp.cxx b/autodoc/source/parser/cpp/cx_c_pp.cxx index 9c81fe71af36..afb389e8065c 100644 --- a/autodoc/source/parser/cpp/cx_c_pp.cxx +++ b/autodoc/source/parser/cpp/cx_c_pp.cxx @@ -98,9 +98,7 @@ Context_Preprocessor::ReadDefine( CharacterSource & io_rText ) cNext = io_rText.MoveOn() ) { } - bool bMacro = cNext == '('; - - if ( NOT bMacro ) + if ( NOT (cNext == '(') ) { SetNewToken( new Tok_DefineName(io_rText.CutToken()) ); SetFollowUpContext( pContext_PP_Definition.Ptr() ); |