tokenizer: added todo for simplifying '(true?x:y)' => '(x)'

This commit is contained in:
Daniel Marjamäki 2009-07-22 19:39:31 +02:00
parent e36994f54b
commit 62f681094f
1 changed files with 1 additions and 1 deletions

View File

@ -1976,7 +1976,7 @@ bool Tokenizer::simplifyQuestionMark()
} }
else else
{ {
// Use code before semicolon /** @todo simplify "(true ? x : y)" to "(x)" */
} }
} }