Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-06-14 14:54:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-14 14:54:14 +0400
commit17d5ac0abf00a46d39b84ae17806042011bd11d6 (patch)
tree0e5537d06d8db366e71751059c1fa5b3f13ee5af /extern
parent05a1a3169336380b51947451ebdabdf5455fe38f (diff)
quiet compiler warning
Diffstat (limited to 'extern')
-rw-r--r--extern/recastnavigation/Recast/Include/RecastAssert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/recastnavigation/Recast/Include/RecastAssert.h b/extern/recastnavigation/Recast/Include/RecastAssert.h
index b58b8fcd286..45cb01fb595 100644
--- a/extern/recastnavigation/Recast/Include/RecastAssert.h
+++ b/extern/recastnavigation/Recast/Include/RecastAssert.h
@@ -24,7 +24,7 @@
#ifdef NDEBUG
// From http://cnicholson.net/2009/02/stupid-c-tricks-adventures-in-assert/
-# define rcAssert(x) do { (void)sizeof(x); } while(__LINE__==-1,false)
+# define rcAssert(x) do { (void)sizeof(x); } while((void)(__LINE__ == -1), false)
#else
# include <assert.h>
# define rcAssert assert