branch, master, updated. 943e7da49899fd2c8180e21d5b9f76e4f6bfca89
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "". The branch, master has been updated via 943e7da49899fd2c8180e21d5b9f76e4f6bfca89 (commit) from 0660e0935a55374a1adcf1e750878285ebc252c1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 943e7da49899fd2c8180e21d5b9f76e4f6bfca89 Author: Phil Carns <[email protected]> Date: Fri Jun 29 14:50:12 2012 -0400 fix triton_assert() bug - operator precedence caused the ! to apply to only a portion of the assert condition in some cases ----------------------------------------------------------------------- Summary of changes: code/src/common/triton-error.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Diff of changes: diff --git a/code/src/common/triton-error.h b/code/src/common/triton-error.h index 31e98da..3116d75 100644 --- a/code/src/common/triton-error.h +++ b/code/src/common/triton-error.h @@ -162,7 +162,7 @@ static inline void triton_assert_failed(const char *file, int line) #define triton_assert(__condition) 0 #else #define triton_assert(__condition) \ - if(! __condition) { triton_assert_failed(__FILE__, __LINE__); } + if(!(__condition)) { triton_assert_failed(__FILE__, __LINE__); } #endif hooks/post-receive --
participants (1)
-
noreply@mcs.anl.gov