Cleanup: style

This commit is contained in:
Campbell Barton 2017-12-04 16:37:31 +11:00
parent e1eb1fbfca
commit d47d263b4b
5 changed files with 10 additions and 10 deletions

@ -760,7 +760,7 @@ if(WITH_INTERNATIONAL)
endif()
if(WITH_PYTHON)
# While we have this as an '#error' in bpy_util.h,
# While we have this as an '#error' in 'bpy_capi_utils.h',
# upgrading Python tends to cause confusion for users who build.
# Give the error message early to make this more obvious.
#

@ -18,7 +18,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/bmesh/operators/bmo_rotate_edge.c
/** \file blender/bmesh/operators/bmo_rotate_edges.c
* \ingroup bmesh
*
* Rotate edges topology that share two faces.

@ -24,8 +24,8 @@
* \ingroup pythonintern
*/
#ifndef __BPY_UTIL_H__
#define __BPY_UTIL_H__
#ifndef __BPY_CAPI_UTILS_H__
#define __BPY_CAPI_UTILS_H__
#if PY_VERSION_HEX < 0x03060000
# error "Python 3.6 or greater is required, you'll need to update your python."
@ -50,4 +50,4 @@ void BPy_SetContext(struct bContext *C);
extern void bpy_context_set(struct bContext *C, PyGILState_STATE *gilstate);
extern void bpy_context_clear(struct bContext *C, PyGILState_STATE *gilstate);
#endif /* __BPY_UTIL_H__ */
#endif /* __BPY_CAPI_UTILS_H__ */