From 8dc4feb751bb38706cd93083154867937093115c Mon Sep 17 00:00:00 2001 From: Greg Sjaardema Date: Mon, 28 Jun 2021 08:21:58 -0600 Subject: [PATCH] Format to eliminate long lines --- include/fmt/core.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index dc0d840d..0a72a7e9 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -332,9 +332,10 @@ struct monostate { constexpr monostate() {} }; -// Eliminate "unused variable" warnings on all compilers. The `(void)var` method -// does not work on many intel compilers. This is from Herb Sutter, "Shutting -// up compiler warnings", https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/ +// Eliminate "unused variable" warnings on all compilers. The +// `(void)var` method does not work on many intel compilers. This is +// from Herb Sutter, "Shutting up compiler warnings", +// https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/ template void ignore_unused( const T& ) { } // An enable_if helper to be used in template parameters which results in much