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 54d4064 commit 9be0609Copy full SHA for 9be0609
clingwrapper/src/clingwrapper.cxx
@@ -705,8 +705,11 @@ Cppyy::TCppType_t Cppyy::GetComplexType(const std::string &name) {
705
706
std::string Cppyy::ResolveEnum(TCppScope_t handle)
707
{
708
- return Cpp::GetTypeAsString(
+ std::string type = Cpp::GetTypeAsString(
709
Cpp::GetIntegerTypeFromEnumScope(handle));
710
+ if (type == "signed char")
711
+ return "char";
712
+ return type;
713
}
714
715
Cppyy::TCppScope_t Cppyy::GetUnderlyingScope(TCppScope_t scope)
0 commit comments