diff options
-rw-r--r-- | libadhocutil/detail/compileTimeFormatters.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libadhocutil/detail/compileTimeFormatters.h b/libadhocutil/detail/compileTimeFormatters.h index 6fa77d0..898b679 100644 --- a/libadhocutil/detail/compileTimeFormatters.h +++ b/libadhocutil/detail/compileTimeFormatters.h @@ -118,9 +118,9 @@ namespace AdHoc { } \ }; FLAGCONV(s << std::showbase, '#'); - FLAGCONV(s.setfill('0'), '0'); + FLAGCONV(s << std::setfill('0'), '0'); FLAGCONV(s << std::left, '-'); - FLAGCONV(s.setfill(' '), ' '); + FLAGCONV(s << std::setfill(' '), ' '); #undef FLAGCONV } |