We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb5368 commit 9c470e0Copy full SHA for 9c470e0
solution/GraphicalDebugging/Util.cs
@@ -141,6 +141,8 @@ public static string CppRemoveCVRef(string type)
141
type = type.Remove(0, 9);
142
if (type.EndsWith(" const"))
143
type = type.Remove(type.Length - 6);
144
+ if (type.EndsWith(" &&"))
145
+ type = type.Remove(type.Length - 3);
146
if (type.EndsWith(" &"))
147
type = type.Remove(type.Length - 2);
148
return type;
0 commit comments