[Bf-blender-cvs] [bb88c7af81] master: Cleanup: Indentation

Sergey Sharybin noreply at git.blender.org
Mon Jan 9 13:30:59 CET 2017


Commit: bb88c7af8157fa3292398cf8b31d74b59f46373a
Author: Sergey Sharybin
Date:   Mon Jan 9 13:11:42 2017 +0100
Branches: master
https://developer.blender.org/rBbb88c7af8157fa3292398cf8b31d74b59f46373a

Cleanup: Indentation

===================================================================

M	intern/smoke/intern/VEC3.h

===================================================================

diff --git a/intern/smoke/intern/VEC3.h b/intern/smoke/intern/VEC3.h
index dafe5e52db..74f6e52a73 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;
 }




More information about the Bf-blender-cvs mailing list