From c2488d130491f503d4509cbe177ea5dffeb078cf Mon Sep 17 00:00:00 2001 From: ThePhD Date: Sun, 14 Jan 2024 11:51:28 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=20Fix=20double-declaration=20of=20?= =?UTF-8?q?format=5Fstring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit — 💬 "My bad; botched copy-paste job" --- include/fmt/base.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index 1b8f38f0..ab915c5a 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -2811,8 +2811,6 @@ using format_string = basic_format_string...>; inline auto runtime(string_view s) -> runtime_format_string<> { return {{s}}; } #endif -template -using format_string = basic_format_string...>; /** Formats a string and writes the output to ``out``. */ template ,