diff options
author | arkady-e1ppa <arkady-e1ppa@yandex-team.com> | 2024-06-11 09:52:09 +0300 |
---|---|---|
committer | arkady-e1ppa <arkady-e1ppa@yandex-team.com> | 2024-06-11 10:05:50 +0300 |
commit | 72cd1bd2a9b1c94a08343c8a8e21e6af4037ce28 (patch) | |
tree | a327f31aee0c020cbdac95eb19a78555a31f47a9 /library/cpp/yt/string/format_arg.h | |
parent | 37a673eee6d2ecdddf279adaf94970cdf2e25b6c (diff) | |
download | ydb-72cd1bd2a9b1c94a08343c8a8e21e6af4037ce28.tar.gz |
More cosmetic issues
810902d6e6c3104880e1ab3b34d29a8aa4bec21b
Diffstat (limited to 'library/cpp/yt/string/format_arg.h')
-rw-r--r-- | library/cpp/yt/string/format_arg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yt/string/format_arg.h b/library/cpp/yt/string/format_arg.h index 8c4f354f98..da7d13a19b 100644 --- a/library/cpp/yt/string/format_arg.h +++ b/library/cpp/yt/string/format_arg.h @@ -35,10 +35,10 @@ struct TFormatArgBase public: // TODO(arkady-e1ppa): Consider more strict formatting rules. static constexpr std::array ConversionSpecifiers = { - 'v', '1', 'c', 's', 'd', 'i', 'o', - 'x', 'X', 'u', 'f', 'F', 'e', 'E', - 'a', 'A', 'g', 'G', 'n', 'p' - }; + 'v', '1', 'c', 's', 'd', 'i', 'o', + 'x', 'X', 'u', 'f', 'F', 'e', 'E', + 'a', 'A', 'g', 'G', 'n', 'p' + }; static constexpr std::array FlagSpecifiers = { '-', '+', ' ', '#', '0', |