Commit fc838519 by John Kessenich

AMD_EXTENSIONS: Fix location of #endif, so that project compiles.

parent cc4c3e09
...@@ -577,9 +577,9 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken) ...@@ -577,9 +577,9 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken)
if (len < MaxTokenLength) if (len < MaxTokenLength)
ppToken->name[len++] = (char)ch; ppToken->name[len++] = (char)ch;
isInt16 = true; isInt16 = true;
#endif
} else } else
ungetch(); ungetch();
#endif
ppToken->name[len] = '\0'; ppToken->name[len] = '\0';
if (!isInt64 && ival > 0xffffffffu) if (!isInt64 && ival > 0xffffffffu)
......
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