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 2087686 commit f4a4a16Copy full SHA for f4a4a16
codegen/src/WindowsSymbol.cpp
@@ -31,18 +31,16 @@ char getWindowsAccessToken(const MemberFunctionProto& proto)
31
{
32
case AccessModifier::Private: return 'E';
33
case AccessModifier::Protected: return 'M';
34
+ default: return 'U';
35
}
-
36
- return 'U';
37
38
39
switch (proto.access)
40
41
case AccessModifier::Private: return 'A';
42
case AccessModifier::Protected: return 'I';
+ default: return 'Q';
43
44
45
- return 'Q';
46
47
48
std::string generateWindowsSymbol(const Class& clazz, const FunctionBindField* fn) {
0 commit comments