diff --git a/modules/14_cpp26/src/custom_formatter.cpp b/modules/14_cpp26/src/custom_formatter.cpp index 54cbc4f..259d302 100644 --- a/modules/14_cpp26/src/custom_formatter.cpp +++ b/modules/14_cpp26/src/custom_formatter.cpp @@ -3,13 +3,11 @@ namespace cpp26 { auto format_point(const Point& point) -> std::string { - (void)point; - return {}; + return std::format("{}", point); } auto format_points(const Point& a, const Point& b) -> std::string { - (void)a; (void)b; - return {}; + return std::format("{} -> {}", a, b); } } // namespace cpp26