From 744f6339865fa8ed00b2e98aa5812b94d67a8604 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 3 Feb 2019 14:01:45 +1100 Subject: Cleanup: trailing commas Needed for clan-format not to wrap onto one line. --- source/blender/makesrna/intern/rna_define.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/makesrna/intern/rna_define.c') diff --git a/source/blender/makesrna/intern/rna_define.c b/source/blender/makesrna/intern/rna_define.c index 19f31f888c0..118ea80f28e 100644 --- a/source/blender/makesrna/intern/rna_define.c +++ b/source/blender/makesrna/intern/rna_define.c @@ -423,7 +423,7 @@ static int rna_validate_identifier(const char *identifier, char *error, bool pro "class", "continue", "def", "del", "elif", "else", "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "nonlocal", "not", "or", "pass", "raise", - "return", "try", "while", "with", "yield", NULL + "return", "try", "while", "with", "yield", NULL, }; @@ -466,7 +466,7 @@ static int rna_validate_identifier(const char *identifier, char *error, bool pro static const char *kwlist_prop[] = { /* not keywords but reserved all the same because py uses */ "keys", "values", "items", "get", - NULL + NULL, }; for (a = 0; kwlist_prop[a]; a++) { @@ -491,7 +491,7 @@ void RNA_identifier_sanitize(char *identifier, int property) "class", "continue", "def", "del", "elif", "else", "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "nonlocal", "not", "or", "pass", "raise", - "return", "try", "while", "with", "yield", NULL + "return", "try", "while", "with", "yield", NULL, }; @@ -537,7 +537,7 @@ void RNA_identifier_sanitize(char *identifier, int property) static const char *kwlist_prop[] = { /* not keywords but reserved all the same because py uses */ "keys", "values", "items", "get", - NULL + NULL, }; for (a = 0; kwlist_prop[a]; a++) { -- cgit v1.2.3