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:
Diffstat (limited to 'source/blender/blenlib/BLI_strict_flags.h')
-rw-r--r--source/blender/blenlib/BLI_strict_flags.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/blenlib/BLI_strict_flags.h b/source/blender/blenlib/BLI_strict_flags.h
index 68ae33b068d..cf7888d3c5e 100644
--- a/source/blender/blenlib/BLI_strict_flags.h
+++ b/source/blender/blenlib/BLI_strict_flags.h
@@ -24,34 +24,34 @@
*/
#ifdef __GNUC__
-# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */
+# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 /* gcc4.6+ only */
# pragma GCC diagnostic error "-Wsign-compare"
# endif
-# if __GNUC__ >= 6 /* gcc6+ only */
+# if __GNUC__ >= 6 /* gcc6+ only */
# pragma GCC diagnostic error "-Wconversion"
# endif
# if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408
- /* gcc4.8+ only (behavior changed to ignore globals)*/
+/* gcc4.8+ only (behavior changed to ignore globals)*/
# pragma GCC diagnostic error "-Wshadow"
- /* older gcc changed behavior with ternary */
+/* older gcc changed behavior with ternary */
# pragma GCC diagnostic error "-Wsign-conversion"
# endif
/* pedantic gives too many issues, developers can define this for own use */
# ifdef WARN_PEDANTIC
# pragma GCC diagnostic error "-Wpedantic"
-# ifdef __clang__ /* pedantic causes clang error */
+# ifdef __clang__ /* pedantic causes clang error */
# pragma GCC diagnostic ignored "-Wlanguage-extension-token"
# endif
# endif
#endif
#ifdef _MSC_VER
-# pragma warning(error:4018) /* signed/unsigned mismatch */
-# pragma warning(error:4244) /* conversion from 'type1' to 'type2', possible loss of data */
-# pragma warning(error:4245) /* conversion from 'int' to 'unsigned int' */
-# pragma warning(error:4267) /* conversion from 'size_t' to 'type', possible loss of data */
-# pragma warning(error:4305) /* truncation from 'type1' to 'type2' */
-# pragma warning(error:4389) /* signed/unsigned mismatch */
+# pragma warning(error : 4018) /* signed/unsigned mismatch */
+# pragma warning(error : 4244) /* conversion from 'type1' to 'type2', possible loss of data */
+# pragma warning(error : 4245) /* conversion from 'int' to 'unsigned int' */
+# pragma warning(error : 4267) /* conversion from 'size_t' to 'type', possible loss of data */
+# pragma warning(error : 4305) /* truncation from 'type1' to 'type2' */
+# pragma warning(error : 4389) /* signed/unsigned mismatch */
#endif
-#endif /* __BLI_STRICT_FLAGS_H__ */
+#endif /* __BLI_STRICT_FLAGS_H__ */