Files
@ r28024:510529c5fc82
Branch filter:
Location: cpp/openttd-patchpack/source/src/core/format.hpp - annotation
r28024:510529c5fc82
1.8 KiB
text/x-c++hdr
Change: Use CARGO_LIST to show station cargo acceptance changes. (#11379)
This simplifies construction of the news message and allows for more than
two changes to be show in one line.
This simplifies construction of the news message and allows for more than
two changes to be show in one line.
r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27788:71137956fe15 r27788:71137956fe15 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 r27415:cd7d225c26b7 | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file format.hpp String formatting functions and helpers. */
#ifndef FORMAT_HPP
#define FORMAT_HPP
#include "../3rdparty/fmt/format.h"
#include "strong_typedef_type.hpp"
template <typename E, typename Char>
struct fmt::formatter<E, Char, std::enable_if_t<std::is_enum<E>::value>> : fmt::formatter<typename std::underlying_type<E>::type> {
using underlying_type = typename std::underlying_type<E>::type;
using parent = typename fmt::formatter<underlying_type>;
constexpr fmt::format_parse_context::iterator parse(fmt::format_parse_context &ctx) {
return parent::parse(ctx);
}
fmt::format_context::iterator format(const E &e, format_context &ctx) const {
return parent::format(underlying_type(e), ctx);
}
};
template <typename T, typename Char>
struct fmt::formatter<T, Char, std::enable_if_t<std::is_base_of<StrongTypedefBase, T>::value>> : fmt::formatter<typename T::BaseType> {
using underlying_type = typename T::BaseType;
using parent = typename fmt::formatter<underlying_type>;
constexpr fmt::format_parse_context::iterator parse(fmt::format_parse_context &ctx) {
return parent::parse(ctx);
}
fmt::format_context::iterator format(const T &t, format_context &ctx) const {
return parent::format(underlying_type(t), ctx);
}
};
#endif /* FORMAT_HPP */
|