summaryrefslogtreecommitdiff
path: root/gr-utils/src/python/modtool/parser_cc_block.py
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@kit.edu>2013-01-28 15:26:05 +0100
committerMartin Braun <martin.braun@kit.edu>2013-01-28 15:26:05 +0100
commit2d695b3c4c86b5c206f95dcc1d71f97d808d98b8 (patch)
treecf52a650d74ada32663cc9bc04ee5e64bd1e0f83 /gr-utils/src/python/modtool/parser_cc_block.py
parentede34060de27184eb6f6df6b5fd03ae8a643bf91 (diff)
modtool: cleanup, bugfixes
Diffstat (limited to 'gr-utils/src/python/modtool/parser_cc_block.py')
-rw-r--r--gr-utils/src/python/modtool/parser_cc_block.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gr-utils/src/python/modtool/parser_cc_block.py b/gr-utils/src/python/modtool/parser_cc_block.py
index d11353cc7a..0d1d75f29a 100644
--- a/gr-utils/src/python/modtool/parser_cc_block.py
+++ b/gr-utils/src/python/modtool/parser_cc_block.py
@@ -121,12 +121,13 @@ class ParserCCBlock(object):
if not in_string:
if c[i] == ')':
if parens_count == 0:
- if read_state == 'type':
+ if read_state == 'type' and len(this_type):
raise ValueError(
'Found closing parentheses before finishing last argument (this is how far I got: %s)'
% str(param_list)
)
- param_list.append((this_type, this_name, this_defv))
+ if len(this_type):
+ param_list.append((this_type, this_name, this_defv))
end_of_list = True
break
else: