Format to eliminate long lines

This commit is contained in:
Greg Sjaardema 2021-06-28 08:21:58 -06:00
parent 2057701d02
commit 8dc4feb751

View File

@ -332,9 +332,10 @@ struct monostate {
constexpr monostate() {} constexpr monostate() {}
}; };
// Eliminate "unused variable" warnings on all compilers. The `(void)var` method // Eliminate "unused variable" warnings on all compilers. The
// does not work on many intel compilers. This is from Herb Sutter, "Shutting // `(void)var` method does not work on many intel compilers. This is
// up compiler warnings", https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/ // from Herb Sutter, "Shutting up compiler warnings",
// https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/
template<class T> void ignore_unused( const T& ) { } template<class T> void ignore_unused( const T& ) { }
// An enable_if helper to be used in template parameters which results in much // An enable_if helper to be used in template parameters which results in much