Skip to content

Commit

Permalink
Use std_array alias.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Jul 6, 2024
1 parent 9eabfca commit 408344e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ std::ostream& operator<<(std::ostream& stream,
// vector<Type> -> join(<<Type)
template <typename Type>
std::ostream& operator<<(std::ostream& stream,
const std::vector<Type>& values) NOEXCEPT
const std_vector<Type>& values) NOEXCEPT
{
// Ok when testing serialize because only used for error message out.
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
Expand All @@ -69,7 +69,7 @@ std::ostream& operator<<(std::ostream& stream,
// array<Type, Size> -> join(<<Type)
template <typename Type, size_t Size>
std::ostream& operator<<(std::ostream& stream,
const std::array<Type, Size>& values) NOEXCEPT
const std_array<Type, Size>& values) NOEXCEPT
{
// Ok when testing serialize because only used for error message out.
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
Expand Down

0 comments on commit 408344e

Please sign in to comment.