| Index: tools/json_schema_compiler/cpp_type_generator.py
|
| diff --git a/tools/json_schema_compiler/cpp_type_generator.py b/tools/json_schema_compiler/cpp_type_generator.py
|
| index 944dba9f1d88e203e60e4d06d37d0d9c4f990187..3d307a9f0be77d775046ed226c764bf824da0b6b 100644
|
| --- a/tools/json_schema_compiler/cpp_type_generator.py
|
| +++ b/tools/json_schema_compiler/cpp_type_generator.py
|
| @@ -85,7 +85,7 @@ class CppTypeGenerator(object):
|
| elif type_.property_type == PropertyType.INTEGER:
|
| cpp_type = 'int'
|
| elif type_.property_type == PropertyType.INT64:
|
| - cpp_type = 'int64'
|
| + cpp_type = 'int64_t'
|
| elif type_.property_type == PropertyType.DOUBLE:
|
| cpp_type = 'double'
|
| elif type_.property_type == PropertyType.STRING:
|
|
|