Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Jan 3, 2019
1 parent 71434a6 commit 362935c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/internal/iutest_printers_printto_defs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ inline void PrintTo(const ::std::basic_string_view<CharT, Traits>& value, iu_ost
#if IUTEST_HAS_CXX_HDR_ANY
inline void PrintTo(const ::std::any& value, iu_ostream* os)
{
*os << "-Any type-name: " << value.type().name();
UniversalPrint(value, os);
*os << "-Any type-name: " << value.type().name();
DefaultPrintNonContainerTo(value, os);
}
#endif

Expand Down

0 comments on commit 362935c

Please sign in to comment.