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>2019-12-17 00:58:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-17 00:58:43 +0300
commit831b85efb2f83927e41b938f49ae4d2d5f42d720 (patch)
tree20dc0c11d9256a1a56e77b728ac2b90cebeee777 /source/blender/blenkernel/intern/modifier.c
parent4f1abcb06f94be97d2e2ca44c7799fb2cdc4369c (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/blenkernel/intern/modifier.c')
-rw-r--r--source/blender/blenkernel/intern/modifier.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index f51cf2bc2b4..a784be9c645 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -108,9 +108,7 @@ void BKE_modifier_init(void)
const ModifierTypeInfo *modifierType_getInfo(ModifierType type)
{
/* type unsigned, no need to check < 0 */
- if (type < NUM_MODIFIER_TYPES && modifier_types[type] &&
- modifier_types[type]->name[0] != '\0')
- {
+ if (type < NUM_MODIFIER_TYPES && modifier_types[type] && modifier_types[type]->name[0] != '\0') {
return modifier_types[type];
}
else {