Skip to content

Commit

Permalink
fix a typo in assert (fixes #164)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Jun 10, 2024
1 parent 2c83563 commit 6926077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/from_exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ static const char*& reference_to_empty_padding(void* ptr) noexcept {
if (is_libcpp_runtime()) {
// libc++-runtime
BOOST_ASSERT_MSG(
sizeof(void*) == 4,
sizeof(void*) != 4,
"32bit platforms are unsupported with libc++ runtime padding reusage. "
"Please report this issue to the library maintainters."
);
Expand Down

0 comments on commit 6926077

Please sign in to comment.