Skip to content

Commit

Permalink
Export tag fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Dec 6, 2023
1 parent 5cdbfdb commit f643dc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/assert/assert.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ namespace libassert {
#ifndef LIBASSERT_FAIL
LIBASSERT_EXPORT
#endif
LIBASSERT_EXPORT void LIBASSERT_FAIL(libassert::assert_type type, const libassert::assertion_printer& printer);
void LIBASSERT_FAIL(libassert::assert_type type, const libassert::assertion_printer& printer);

// always_false is just convenient to use here
#define LIBASSERT_PHONY_USE(E) ((void)libassert::detail::always_false<decltype(E)>)
Expand Down Expand Up @@ -567,7 +567,7 @@ namespace libassert::detail {
* stringification
*/

LIBASSERT_ATTR_COLD [[nodiscard]] LIBASSERT_EXPORT
LIBASSERT_ATTR_COLD [[nodiscard]]
constexpr std::string_view substring_bounded_by(
std::string_view sig,
std::string_view l,
Expand Down
2 changes: 1 addition & 1 deletion src/assert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ namespace libassert::utility {

// Default handler

LIBASSERT_ATTR_COLD
LIBASSERT_ATTR_COLD LIBASSERT_EXPORT
void libassert_default_fail_action(
libassert::assert_type type,
const libassert::assertion_printer& printer
Expand Down

0 comments on commit f643dc6

Please sign in to comment.