Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/Cppyy.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,10 @@ namespace Cppyy {
TCppMethod_t GetGlobalOperator(TCppType_t scope, const std::string &lc,
const std::string &rc,
const std::string &op);
CPPYY_IMPORT
void GetClassOperators(Cppyy::TCppScope_t klass,
const std::string& opname,
std::vector<TCppScope_t> &operators);

// method properties ---------------------------------------------------------
CPPYY_IMPORT
Expand Down Expand Up @@ -321,7 +325,8 @@ namespace Cppyy {
TCppType_t GetType(const std::string& name, bool enable_slow_lookup = false);
CPPYY_IMPORT
bool AppendTypesSlow(const std::string &name,
std::vector<Cpp::TemplateArgInfo>& types);
std::vector<Cpp::TemplateArgInfo>& types,
bool no_reference=false);
Comment on lines +328 to +329
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note to myself: This change is not required. Anyway if the CI runs it will fail.

CPPYY_IMPORT
TCppType_t GetComplexType(const std::string& element_type);
CPPYY_IMPORT
Expand Down
Loading