//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 // UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME // // template // requires is-vector-bool-reference // struct formatter // template // typename FormatContext::iterator // format(const T& r, FormatContext& ctx) const; // Note this tests the basics of this function. It's tested in more detail in // the format functions test. #include #include #include #include #include #include "test_format_context.h" #include "test_macros.h" #include "make_string.h" #define SV(S) MAKE_STRING_VIEW(CharT, S) template void test_format(StringViewT expected, std::vector::reference arg) { using CharT = typename StringViewT::value_type; using String = std::basic_string; using OutIt = std::back_insert_iterator; using FormatCtxT = std::basic_format_context; const std::formatter::reference, CharT> formatter; String result; OutIt out = std::back_inserter(result); FormatCtxT format_ctx = test_format_context_create(out, std::make_format_args(arg)); formatter.format(arg, format_ctx); assert(result == expected); } template void test_fmt() { test_format(SV("true"), std::vector{true}[0]); test_format(SV("false"), std::vector{false}[0]); } void test() { test_fmt(); #ifndef TEST_HAS_NO_WIDE_CHARACTERS test_fmt(); #endif } int main(int, char**) { test(); return 0; }