Index: tools/json_schema_compiler/cpp_util.py |
diff --git a/tools/json_schema_compiler/cpp_util.py b/tools/json_schema_compiler/cpp_util.py |
index 881a6c7308dc7b3727a60f9874062b4c0b2a25d6..00f193f90b118e8e779db6cb862d77529d1a4e36 100644 |
--- a/tools/json_schema_compiler/cpp_util.py |
+++ b/tools/json_schema_compiler/cpp_util.py |
@@ -105,14 +105,6 @@ def GenerateIfndefName(file_path): |
.replace('.', '_')) |
-def PadForGenerics(var): |
- """Appends a space to |var| if it ends with a >, so that it can be compiled |
- within generic types. |
- """ |
- return ('%s ' % var) if var.endswith('>') else var |
- |
- |
- |
def OpenNamespace(cpp_namespace): |
"""Get opening root namespace declarations. |
""" |