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
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-01-09 15:12:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-01-09 15:12:43 +0300
commitd5cf90f59f7f416663963bca0d765f4a5c615a9b (patch)
tree59f66baf4fd245d92c7727f31ae8b4ab646888f2 /intern/smoke
parentbb88c7af8157fa3292398cf8b31d74b59f46373a (diff)
Cleanup: Strict CLang warning in Smoke module
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/intern/VEC3.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/smoke/intern/VEC3.h b/intern/smoke/intern/VEC3.h
index 74f6e52a737..ffc7da88138 100644
--- a/intern/smoke/intern/VEC3.h
+++ b/intern/smoke/intern/VEC3.h
@@ -949,6 +949,8 @@ operator<<( std::ostream& os, const BasicVector::Vector3Dim<Scalar>& i )
snprintf(buf,256,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
# endif
os << std::string(buf);
+#else
+ (void)i; /* Ignored. */
#endif
return os;
}