Skip to content
Merged
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
2 changes: 2 additions & 0 deletions include/CppInterOp/Dispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,10 @@ CPPINTEROP_API_TABLE
/// \param[in] customLibPath Optional custom path to libclangCppInterOp
/// \returns true if initialization succeeded, false otherwise
inline bool LoadDispatchAPI(const char* customLibPath = nullptr) {
#ifndef NDEBUG
std::cout << "[CppInterOp Dispatch] Loading CppInterOp API from "
<< (customLibPath ? customLibPath : "default library path") << '\n';
#endif // NDEBUG
if (customLibPath) {
void* test = dlGetProcAddress("GetInterpreter", customLibPath);
if (!test) {
Expand Down
Loading