diff options
Diffstat (limited to 'TAO/TAO_IDL/fe/lex.yy.cpp')
-rw-r--r-- | TAO/TAO_IDL/fe/lex.yy.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/fe/lex.yy.cpp b/TAO/TAO_IDL/fe/lex.yy.cpp index ecdd640ecaa..9cf7069e864 100644 --- a/TAO/TAO_IDL/fe/lex.yy.cpp +++ b/TAO/TAO_IDL/fe/lex.yy.cpp @@ -1920,9 +1920,10 @@ idl_parse_line_and_file(char *buf) UTL_String *nm; /* Skip initial '#' */ - if (*r != '#') { + if (*r != '#') return; - } + else + r++; /* Check to see if we're running under the screwy Microsoft scheme /* of putting #line num instead of #num. */ |