Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
metab0t committed Nov 22, 2024
1 parent 4f65128 commit 384b032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pyoptinterface/dylib.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class DynamicLibrary
fmt::print("function {} is not loaded correctly\n", #f); \
_load_success = false; \
} \
_function_pointers[#f] = ptr; \
_function_pointers[#f] = reinterpret_cast<void *>(ptr) \
}

#define IS_DYLIB_LOAD_SUCCESS _load_success
Expand Down

0 comments on commit 384b032

Please sign in to comment.