This website requires JavaScript.
Explore
Help
Register
Sign In
RPCS3
/
glslang
Watch
1
Star
0
Fork
0
You've already forked glslang
mirror of
https://github.com/RPCS3/glslang.git
synced
2025-02-22 20:03:06 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
glslang
/
Test
/
cppBad.vert
5 lines
42 B
GLSL
Raw
Normal View
History
Unescape
Escape
PP: Fix issue #408: # as last character in macro. This would look ahead for a second #, for token pasting, and if not found, backup one token. This is fine, unless at the end of line, which would backup the #, rather than the look ahead.
2016-07-30 12:38:17 -06:00
#define m#0#
#if m
PP: Fix issue #407; handle empty identifier. The sequence #define m() int m" creates a token of no length (a string of 0 size). Protect against a string of 0 size as well as the existing protect against a null string.
2016-07-30 13:39:52 -06:00
#define n()
int
n
"
Reference in New Issue
Copy Permalink