Skip to content

Commit 3c06b8c

Browse files
committed
Clarify intent
1 parent 747b3af commit 3c06b8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pygccxml/parser/scanner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def __read_version(self, attrs):
630630

631631
@staticmethod
632632
def __update_operator_name(operator):
633+
space = ""
633634
if "new" in operator.name or "delete" in operator.name:
634-
operator.name = "operator " + operator.name
635-
else:
636-
operator.name = "operator" + operator.name
635+
space = " "
636+
operator.name = "operator" + space + operator.name

0 commit comments

Comments
 (0)