| Index: tools/json_schema_compiler/h_generator.py
|
| diff --git a/tools/json_schema_compiler/h_generator.py b/tools/json_schema_compiler/h_generator.py
|
| index ba7c5ca133a27b4a4ebc5e87089b5a77071a143c..4cc0e6f89baeff52345d8d9172c066da12e75cfc 100644
|
| --- a/tools/json_schema_compiler/h_generator.py
|
| +++ b/tools/json_schema_compiler/h_generator.py
|
| @@ -158,10 +158,11 @@ class HGenerator(object):
|
| for prop in self._cpp_type_generator.ExpandParams(props):
|
| if prop.description:
|
| c.Comment(prop.description)
|
| - c.Append('%s %s;' % (
|
| + (c.Append('%s %s;' % (
|
| self._cpp_type_generator.GetType(prop, wrap_optional=True),
|
| prop.unix_name))
|
| - c.Append()
|
| + .Append()
|
| + )
|
| return c
|
|
|
| def _GenerateType(self, type_):
|
|
|