Solved: 51 - Custom Formatter

This commit is contained in:
2026-08-24 19:33:30 +03:00
parent 986be65d61
commit 45bcd09bc1
+2 -4
View File
@@ -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