diff options
Diffstat (limited to 'compat/debug.cpp')
| -rw-r--r-- | compat/debug.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/compat/debug.cpp b/compat/debug.cpp index 0a77d298..0c7a6fd1 100644 --- a/compat/debug.cpp +++ b/compat/debug.cpp @@ -1,11 +1,16 @@ #include "debug.hpp" #include "compat/strerror.hpp" #include <cerrno> +#include <cstdio> #include <Corrade/Containers/StringView.h> // Error{} << "error" << colon() << "can't open file" << colon() << quoted("foo") << error_string(EINVAL); // ===> "error: can't open file 'foo': Invalid argument" +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wformat-nonliteral" +#endif + namespace floormat::detail::corrade_debug { Debug& operator<<(Debug& dbg, Colon box) @@ -46,6 +51,15 @@ Debug& quoted_end(Debug& dbg, Debug::Flags flags, char c) template struct Quoted<StringView>; +Debug& operator<<(Debug& dbg, Fraction f) +{ + char fmt[8], buf[56]; + std::snprintf(fmt, sizeof fmt, "%%.%hhuf", f.decimal_points); + std::snprintf(buf, sizeof buf, fmt, (double)f.value); + dbg << buf; + return dbg; +} + } // namespace floormat::detail::corrade_debug namespace floormat { @@ -56,4 +70,6 @@ Colon colon(char c) { return Colon{c}; } ErrorString error_string(int error) { return { error }; } ErrorString error_string() { return { errno }; } +Fraction fraction(float value, uint8_t decimal_points) { return Fraction { value, decimal_points }; } + } // namespace floormat |
