Commit 207280b9 authored by Nils Goroll's avatar Nils Goroll

have vmodtool check STRING_LIST position

noté en passant
parent dc69d1c1
......@@ -361,6 +361,8 @@ class ProtoType(object):
t = arg(wl, names, st.vcc.enums, ',')
if t.vt == 'VOID':
err("arguments can not be of type '%s'" % t.vt, warn=False)
if t.vt == 'STRING_LIST' and len(wl) > 1:
err("'%s' must be the last argument" % t.vt, warn=False)
if t.nm is None:
t.nm2 = "arg%d" % n
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment