| 25 | #include "../errors/exceptionMessages.hpp" |
| 26 | |
| 27 | auto fmt::formatter<openassetio::EntityReference>::format( |
| 28 | const openassetio::EntityReference& entityRef, format_context& ctx) const |
| 29 | -> decltype(ctx.out()) { |
| 30 | return formatter<string_view>::format(fmt::format("{}", entityRef.toString()), ctx); |
| 31 | } |
| 32 | |
| 33 | auto fmt::formatter<openassetio::EntityReferences>::format( |
| 34 | const openassetio::EntityReferences& entityRefs, format_context& ctx) const |