diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-07-31 11:27:28 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-07-31 11:27:28 +0100 |
commit | faaf9f0e48071dcd86864c1bcdb1cf80f5271162 (patch) | |
tree | bf078d71baf3c034a828603ae706a0d611c5c02b /src/client/rspamc.cxx | |
parent | cd520f2ef02104805f3169edf22a7b67b335aaad (diff) | |
download | rspamd-faaf9f0e48071dcd86864c1bcdb1cf80f5271162.tar.gz rspamd-faaf9f0e48071dcd86864c1bcdb1cf80f5271162.zip |
[Minor] Add fmt::format specialisation
Diffstat (limited to 'src/client/rspamc.cxx')
-rw-r--r-- | src/client/rspamc.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/client/rspamc.cxx b/src/client/rspamc.cxx index bf7a23c47..e934efeb1 100644 --- a/src/client/rspamc.cxx +++ b/src/client/rspamc.cxx @@ -1,11 +1,11 @@ -/*- +/* * Copyright 2023 Vsevolod Stakhov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -354,6 +354,14 @@ static constexpr auto emphasis_argument(const T &arg, int precision) -> auto return fmt::format("{:.{}f}", arg, precision); } +template<> +struct fmt::formatter<rspamd_action_type> : fmt::formatter<string_view> { + auto format(rspamd_action_type c, format_context &ctx) const + { + return formatter<string_view>::format(std::string_view{rspamd_action_to_str(c)}, ctx); + } +}; + using sort_lambda = std::function<int(const ucl_object_t *, const ucl_object_t *)>; static const auto sort_map = frozen::make_unordered_map<frozen::string, sort_lambda>({ {"name", [](const ucl_object_t *o1, const ucl_object_t *o2) -> int { |