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 b856952 commit 3b09265Copy full SHA for 3b09265
llvm/include/llvm/Support/TypeName.h
@@ -28,7 +28,7 @@ template <typename DesiredTypeName> inline StringRef getTypeNameImpl() {
28
#elif defined(_MSC_VER)
29
StringRef Name = __FUNCSIG__;
30
31
- StringRef Key = "getTypeName<";
+ StringRef Key = "getTypeNameImpl<";
32
Name = Name.substr(Name.find(Key));
33
assert(!Name.empty() && "Unable to find the function name!");
34
Name = Name.drop_front(Key.size());
0 commit comments