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:
authorCampbell Barton <campbell@blender.org>2022-10-05 12:27:45 +0300
committerCampbell Barton <campbell@blender.org>2022-10-05 12:27:45 +0300
commite3bcb203a9846cff0608bffca9cbef35758471b4 (patch)
treee9c0b713dd37ca3be4436d8cf5d39c1bb5ce020a /source/blender
parent1a485a3aa619f3359b869dabeff0132634a22e15 (diff)
Fix order of include-guard & C++ extern block
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/generic/py_capi_utils.h4
1 files changed, 2 insertions, 2 deletions
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__ */