12#ifndef CDT_PLUSPLUS_FORMATTERS_HPP
13#define CDT_PLUSPLUS_FORMATTERS_HPP
16#include <fmt/format.h>
23template <
typename Kernel>
24struct fmt::formatter<CGAL::Point_3<Kernel>>
27 auto constexpr parse(format_parse_context& ctx) ->
decltype(ctx.begin())
33 template <
typename FormatContext>
34 auto format(
const CGAL::Point_3<Kernel>& point, FormatContext& ctx)
const
35 ->
decltype(ctx.out())
39 return fmt::format_to(ctx.out(),
"{}", ss.str());
Traits class for particular uses of CGAL.