diff options
author | asynts <asynts@gmail.com> | 2020-09-26 15:26:14 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-26 17:19:04 +0200 |
commit | 01915a30272a108ad244af6ec7fe5644674540b4 (patch) | |
tree | 03fa94542ffc1c6d096dae15dc76e59f9546bc3c /AK/Format.h | |
parent | 2111fc5f63822c05bc88b58ad85cb897fa79e3fb (diff) | |
download | serenity-01915a30272a108ad244af6ec7fe5644674540b4.zip |
AK+Format: Use the new format backend in the implementation.
Diffstat (limited to 'AK/Format.h')
-rw-r--r-- | AK/Format.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AK/Format.h b/AK/Format.h index 1ab74b599d..1922f548f9 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -81,9 +81,11 @@ struct StandardFormatter { enum class Mode { Default, Binary, + BinaryUppercase, Decimal, Octal, Hexadecimal, + HexadecimalUppercase, Character, String, Pointer, |