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.
IsPointerType
1 parent 666d9cf commit f212d74Copy full SHA for f212d74
clingwrapper/src/clingwrapper.cxx
@@ -491,6 +491,10 @@ bool Cppyy::IsClassType(TCppType_t type) {
491
return Cpp::IsRecordType(type);
492
}
493
494
+bool Cppyy::IsPointerType(TCppType_t type) {
495
+ return Cpp::IsPointerType(type);
496
+}
497
+
498
bool Cppyy::IsFunctionPointerType(TCppType_t type) {
499
return Cpp::IsFunctionPointerType(type);
500
clingwrapper/src/cpp_cppyy.h
@@ -86,6 +86,8 @@ namespace Cppyy {
86
RPY_EXPORTED
87
bool IsClassType(TCppType_t type);
88
89
+ bool IsPointerType(TCppType_t type);
90
+ RPY_EXPORTED
91
bool IsFunctionPointerType(TCppType_t type);
92
93
TCppType_t GetType(const std::string &name, bool enable_slow_lookup = false);
0 commit comments