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 4c1320b commit f4676e8Copy full SHA for f4676e8
solution/GraphicalDebugging/Util.cs
@@ -143,6 +143,15 @@ public static string CppRemoveCVRef(string type)
143
type = type.Remove(i - 1);
144
}
145
146
+ if (type.Contains("!"))
147
+ {
148
+ //remove bracket-less module declaration sometimes appearing in the variable type (ends with "!" symbol)
149
+ int i = type.LastIndexOf("!");
150
+ if (i > 0) // including space
151
152
+ type = type.Remove(0, i + 1);
153
+ }
154
155
if (type.StartsWith("const "))
156
type = type.Remove(0, 6);
157
if (type.StartsWith("volatile "))
0 commit comments