includes: Tabs -> Spaces

This commit is contained in:
WerWolv
2024-06-22 10:46:30 +02:00
parent e02280f9ee
commit 2a3de1b705
15 changed files with 991 additions and 995 deletions

View File

@@ -11,20 +11,20 @@ import hex.dec;
*/
namespace auto hex::type {
/**
A mangled name string that gets demangled when displayed
*/
struct MangledName {
char value[];
} [[sealed, format("hex::type::impl::format_mangled_name")]];
namespace impl {
fn format_mangled_name(ref MangledName name) {
return hex::dec::demangle(name.value);
};
}
}