Initial Course
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user