diff options
Diffstat (limited to 'src/preprocess.c')
| -rw-r--r-- | src/preprocess.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/preprocess.c b/src/preprocess.c index df688f1..8b52f7c 100644 --- a/src/preprocess.c +++ b/src/preprocess.c @@ -969,10 +969,7 @@ static BOOL preprocess_if_group_or_elif_group(Preprocessor* pp, int directive_to } static BOOL preprocess_if_group(Preprocessor* pp, int directive_token_pos) { - // TODO: this code does not work for some reason. - // return preprocess_if_group_or_elif_group(pp, directive_token_pos, FALSE); - int x = 0; - return preprocess_if_group_or_elif_group(pp, directive_token_pos, x); + return preprocess_if_group_or_elif_group(pp, directive_token_pos, FALSE); } static BOOL preprocess_elif_group(Preprocessor* pp, int directive_token_pos, BOOL did_process) { |
