2026-08-11 17:40:36 +03:00
|
|
|
#include "custom_formatter.hpp"
|
|
|
|
|
|
|
|
|
|
namespace cpp26 {
|
|
|
|
|
|
|
|
|
|
auto format_point(const Point& point) -> std::string {
|
|
|
|
|
(void)point;
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto format_points(const Point& a, const Point& b) -> std::string {
|
|
|
|
|
(void)a; (void)b;
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace cpp26
|