Skip to content

Commit

Permalink
Remove && defined(_DLL) (TBD: is it needed? but what is correct?)
Browse files Browse the repository at this point in the history
  • Loading branch information
rwgk committed Oct 23, 2024
1 parent c3415a9 commit a5b5c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pybind11/detail/internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ struct type_info {
# if defined(__GXX_ABI_VERSION) // Linux/OSX.
# define PYBIND11_BUILD_ABI "_cxxabi" PYBIND11_TOSTRING(__GXX_ABI_VERSION)
# elif defined(_MSC_VER) // See PR #4953.
# if defined(_MT) && defined(_DLL)
# if defined(_MT)
# define PYBIND11_BUILD_ABI "_mt_mscver" PYBIND11_TOSTRING(_MSC_VER)
# elif defined(_MD)
# if (_MSC_VER) / 100 == 19
Expand Down

0 comments on commit a5b5c3b

Please sign in to comment.