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:11:42 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-01-09 15:11:42 +0300
commitbb88c7af8157fa3292398cf8b31d74b59f46373a (patch)
tree26e36daa0d636a253003e703ad86212d32115074 /intern/smoke
parent1b75cd5aa80b38a8bee6693cf2dfc9a3e8e62abf (diff)
Cleanup: Indentation
Diffstat (limited to 'intern/smoke')
-rw-r--r--intern/smoke/intern/VEC3.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/intern/smoke/intern/VEC3.h b/intern/smoke/intern/VEC3.h
index dafe5e52dbd..74f6e52a737 100644
--- a/intern/smoke/intern/VEC3.h
+++ b/intern/smoke/intern/VEC3.h
@@ -943,14 +943,14 @@ operator<<( std::ostream& os, const BasicVector::Vector3Dim<Scalar>& i )
{
#if 0
char buf[256];
-#if _WIN32
- sprintf(buf,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
-#else
- snprintf(buf,256,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
-#endif
+# if _WIN32
+ sprintf(buf,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
+# else
+ snprintf(buf,256,globVecFormatStr, (double)i[0],(double)i[1],(double)i[2]);
+# endif
os << std::string(buf);
#endif
- return os;
+ return os;
}