Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
fb684b43
Commit
fb684b43
authored
Jun 20, 2006
by
Simon Marlow
Browse files
fix sloppy conditionals
parent
71899d3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/Cmm.h
View file @
fb684b43
...
...
@@ -214,7 +214,7 @@
* Note the syntax is slightly different to the C version of this macro.
*/
#ifdef DEBUG
#define IF_DEBUG(c,s) if (RtsFlags_DebugFlags_##c(RtsFlags)) { s; }
#define IF_DEBUG(c,s) if (RtsFlags_DebugFlags_##c(RtsFlags)
!= 0::I32
) { s; }
#else
#define IF_DEBUG(c,s)
/* nothing */
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment