Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing CHECK for parentheses detection #2

Closed
tralamazza opened this issue Jul 12, 2013 · 1 comment
Closed

missing CHECK for parentheses detection #2

tralamazza opened this issue Jul 12, 2013 · 1 comment

Comments

@tralamazza
Copy link

IS_PAREN(()) // Expands to 1
IS_PAREN(xxx) // Expands to 0

should be

CHECK(IS_PAREN(())) // Expands to 1
CHECK(IS_PAREN(xxx)) // Expands to 0
@pfultz2
Copy link
Owner

pfultz2 commented Jul 12, 2013

The problem is IS_PAREN should call CHECK. I fixed it now in the wiki.

@pfultz2 pfultz2 closed this as completed Jul 12, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants