Skip to content

Commit

Permalink
Properly add debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
barche committed Jun 7, 2024
1 parent 784e9fa commit baf53e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/c_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ JLCXX_API void initialize_cxxwrap(jl_value_t* julia_module, jl_value_t* cppfunct

register_core_types();
register_core_cxxwrap_types();
std::cout << "libcxxwrap: Hash for jl_value_t* is " << type_hash<jl_value_t*>().first.hash_code() << std::endl;
}

JLCXX_API void register_julia_module(jl_module_t* jlmod, void (*regfunc)(jlcxx::Module&))
Expand Down
1 change: 0 additions & 1 deletion src/jlcxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,6 @@ JLCXX_API void cxxwrap_init(const std::string& envpath)
}
throw std::runtime_error("Error initializing CxxWrap module");
}
std::cout << "libcxxwrap: Hash for jl_value_t* is " << type_hash<jl_value_t*>().first.hash_code() << std::endl;
}

}

0 comments on commit baf53e1

Please sign in to comment.