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 <ideasman42@gmail.com>2021-03-22 06:22:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-22 06:25:42 +0300
commit544b3ab1de016b6c4557c2b5664f4f0e013fcd1c (patch)
tree9a8491c95d92199cb9d3af7fb3ddf9f15a475225 /source/blender/python
parent2a06657eca5a9b217384062daf55343bf08f86ec (diff)
Cleanup: clang-format, trailing space
Minor manual tweak to prevent wrapping an array into columns.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_app_build_options.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_app_build_options.c b/source/blender/python/intern/bpy_app_build_options.c
index f7b71c769d1..9f12c9f80f1 100644
--- a/source/blender/python/intern/bpy_app_build_options.c
+++ b/source/blender/python/intern/bpy_app_build_options.c
@@ -27,7 +27,7 @@
static PyTypeObject BlenderAppBuildOptionsType;
static PyStructSequence_Field app_builtopts_info_fields[] = {
- /* names mostly follow CMake options, lowercase, after WITH_ */
+ /* names mostly follow CMake options, lowercase, after `WITH_` */
{"bullet", NULL},
{"codec_avi", NULL},
{"codec_ffmpeg", NULL},
@@ -65,6 +65,7 @@ static PyStructSequence_Field app_builtopts_info_fields[] = {
{"fluid", NULL},
{"xr_openxr", NULL},
{"potrace", NULL},
+ /* Sentinel (this line prevents `clang-format` wrapping into columns). */
{NULL},
};