Added tutorial 705

Former-commit-id: ef2d804f84
This commit is contained in:
Sebastian Koch
2016-07-06 15:51:04 +02:00
parent 5416e09508
commit 5e56eb4f81
10 changed files with 266 additions and 1 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ def map_parameter_types(name, cpp_type, parsed_types, errors, enum_types):
if len(parsed_types) == 0:
errors.append("Empty typechain: %s" % cpp_type)
if cpp_type == "int" or cpp_type == "bool":
if cpp_type == "int" or cpp_type == "bool" or cpp_type == "unsigned int":
return cpp_type, True
else:
return cpp_type, False