Fix doulbe semicolons.

This commit is contained in:
Relintai 2022-06-04 08:52:00 +02:00
parent 3b6d9c4b35
commit 97c5fbc9fc

View File

@ -744,6 +744,8 @@ class GDSParser:
s += "#endif" s += "#endif"
s += "\n" s += "\n"
s = s.replace(";;", ";")
return s return s
func get_cpp_impl_string(file_name : String) -> String: func get_cpp_impl_string(file_name : String) -> String:
@ -760,6 +762,8 @@ class GDSParser:
s += "\n\n" s += "\n\n"
s = s.replace(";;", ";")
return s return s
func process_file(file_name : String) -> void: func process_file(file_name : String) -> void: