From 93503e9c59d3386be3a7819fc671b1bc13841e99 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sun, 14 Jul 2024 17:08:44 +0900 Subject: [PATCH] fix: remove operator<<(basic_value) from test --- tests/utility.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/utility.hpp b/tests/utility.hpp index a4df9b2..06c05e9 100644 --- a/tests/utility.hpp +++ b/tests/utility.hpp @@ -86,13 +86,6 @@ void toml11_test_parse_failure(F fn, std::string in, toml::detail::context c namespace toml { -template -std::ostream& operator<<(std::ostream& os, const toml::basic_value& v) -{ - os << toml::format(v); - return os; -} - std::ostream& operator<<(std::ostream& os, const integer_format_info&); std::ostream& operator<<(std::ostream& os, const floating_format_info&); std::ostream& operator<<(std::ostream& os, const string_format_info&);