aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/catch2/src
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/catch2/src')
-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;
}