Lines Matching +refs:clang +refs:format +refs:replace
29 $ clang++ -std=c++17 test.cpp
71 $ clang++ -stdlib=libc++ test.cpp
88 $ clang++ -nostdinc++ -nostdlib++ \
138 If you would prefer to not use that flag, then you can replace ``/path/to/include-what-you-use/shar…
176 overriden at compile-time by defining the ``_LIBCPP_VERBOSE_ABORT(format, args...)`` variadic macro.
177 When that macro is defined, it will be called with a format string as the first argument, followed …
178 a series of arguments to format using printf-style formatting. Compile-time customization may be
191 void __libcpp_verbose_abort(char const* format, ...)
193 This mechanism is similar to how one can replace the default definition of ``operator new``
201 void std::__libcpp_verbose_abort(char const* format, ...) {
203 va_start(list, format);
204 std::vfprintf(stderr, format, list);
501 * ``<format>``
513 Extensions to ``<format>``
516 The exposition only type ``basic-format-string`` and its typedefs
517 ``format-string`` and ``wformat-string`` became ``basic_format_string``,