aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/catch2
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-29 20:29:50 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-29 20:29:50 +0100
commit3e7902f7d790a486d3d9cb978df193f07f3a6ad9 (patch)
treefd9815cf214daeec1cad826e040cf8a0cbb6be33 /contrib/catch2
parent67b2fae1fa8b033045a44c1355d9dfd8f83e0d9b (diff)
downloadnihil-3e7902f7d790a486d3d9cb978df193f07f3a6ad9.tar.gz
nihil-3e7902f7d790a486d3d9cb978df193f07f3a6ad9.tar.bz2
finish macOS support
Diffstat (limited to 'contrib/catch2')
-rw-r--r--contrib/catch2/src/catch2/internal/catch_reusable_string_stream.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/catch2/src/catch2/internal/catch_reusable_string_stream.hpp b/contrib/catch2/src/catch2/internal/catch_reusable_string_stream.hpp
index 5b864f3..57f122f 100644
--- a/contrib/catch2/src/catch2/internal/catch_reusable_string_stream.hpp
+++ b/contrib/catch2/src/catch2/internal/catch_reusable_string_stream.hpp
@@ -43,7 +43,7 @@ namespace Catch {
template<typename T>
auto operator << ( T const& value ) -> ReusableStringStream& {
- *m_oss << value;
+ (void) (*m_oss << value);
return *this;
}