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__ */ _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
