Skip to content

Commit 05045ad

Browse files
Also change in namingng
1 parent e395218 commit 05045ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

addons/namingng.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def process(dumpfiles, configfile, debugprint=False):
182182
if "RE_FUNCTIONNAME" in conf and conf["RE_FUNCTIONNAME"]:
183183
for token in cfg.tokenlist:
184184
if token.function:
185-
if token.function.type == 'Constructor' or token.function.type == 'Destructor':
185+
if token.function.type in ('Constructor', 'Destructor', 'CopyConstructor', 'MoveConstructor'):
186186
continue
187187
retval = token.previous.str
188188
prev = token.previous

0 commit comments

Comments
 (0)