includes/type: Fixed Path formatter

This commit is contained in:
Nik
2023-03-28 15:53:19 +02:00
committed by GitHub
parent b73b69a8cc
commit ef198cf24f

View File

@@ -40,14 +40,14 @@ namespace type {
namespace impl {
fn format_path_segment(PathSegment segment) {
fn format_path_segment(ref auto segment) {
return segment.string;
};
fn format_path(Path path) {
fn format_path(ref auto path) {
return std::mem::read_string($, sizeof(path));
};
}
}
}