[Bf-blender-cvs] [e3bcb203a98] master: Fix order of include-guard & C++ extern block

Campbell Barton noreply at git.blender.org
Wed Oct 5 11:30:35 CEST 2022


Commit: e3bcb203a9846cff0608bffca9cbef35758471b4
Author: Campbell Barton
Date:   Wed Oct 5 20:27:45 2022 +1100
Branches: master
https://developer.blender.org/rBe3bcb203a9846cff0608bffca9cbef35758471b4

Fix order of include-guard & C++ extern block

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

M	source/blender/python/generic/py_capi_utils.h

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

diff --git a/source/blender/python/generic/py_capi_utils.h b/source/blender/python/generic/py_capi_utils.h
index 91ebef8d0b0..51e36892cbd 100644
--- a/source/blender/python/generic/py_capi_utils.h
+++ b/source/blender/python/generic/py_capi_utils.h
@@ -275,8 +275,8 @@ bool PyC_StructFmt_type_is_int_any(char format);
 bool PyC_StructFmt_type_is_byte(char format);
 bool PyC_StructFmt_type_is_bool(char format);
 
-#endif /* __PY_CAPI_UTILS_H__ */
-
 #ifdef __cplusplus
 }
 #endif
+
+#endif /* __PY_CAPI_UTILS_H__ */



More information about the Bf-blender-cvs mailing list