We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb8c0f commit dde26a2Copy full SHA for dde26a2
1 file changed
include/fmt/base.h
@@ -226,7 +226,7 @@
226
227
// Enable minimal optimizations for more compact code in debug mode.
228
FMT_PRAGMA_GCC(push_options)
229
-#if !defined(__OPTIMIZE__) && !defined(__CUDACC__) && !defined(FMT_MODULE)
+#if !defined(FMT_DISABLE_DEBUG_OPTIMIZE_PRAGMA) && !defined(__OPTIMIZE__) && !defined(__CUDACC__) && !defined(FMT_MODULE)
230
FMT_PRAGMA_GCC(optimize("Og"))
231
#endif
232
@@ -2923,6 +2923,7 @@ FMT_INLINE void println(format_string<T...> fmt, T&&... args) {
2923
}
2924
2925
FMT_PRAGMA_GCC(pop_options)
2926
+
2927
FMT_END_EXPORT
2928
FMT_END_NAMESPACE
2929
0 commit comments