jomiller / vscode-rtags

RTags Client for Visual Studio Code
GNU General Public License v3.0
10 stars 0 forks source link

Renaming class name removes '~' in destructor #26

Closed hgijeon closed 5 years ago

hgijeon commented 5 years ago

With this original code, class SomeClass { ~SomeClass() {} };

I tried to rename(shortcut: F2) symbol 'SomeClass' into 'ChangedName', but the '~' in the destructor is removed and last character of symbol remained like below. class ChangedName { ChangedNames() {} };

I'm using rdm with version 2.21.126

jomiller commented 5 years ago

This is fixed in 85014ff91c732acb76af765b28ee8f8dbd1354ee. The fix will be included in the next release. Thanks!

jomiller commented 5 years ago

@hgijeon, please try out the fix in the new v0.5.0 release, and close this ticket if it looks good.

hgijeon commented 5 years ago

Thanks a lot!