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

@@ -16,7 +16,7 @@ namespace auto std::string {
struct SizedStringBase<SizeType, DataType> { struct SizedStringBase<SizeType, DataType> {
SizeType size; SizeType size;
DataType data[size]; DataType data[size];
} [[sealed, format("std::string::impl::format_sized_string"), transform("std::string::impl::format_sized_string")]]; } [[sealed, format("std::string::impl::format_string"), transform("std::string::impl::format_string")]];
/** /**
A ASCII string with a prefixed size. A ASCII string with a prefixed size.
@@ -36,7 +36,7 @@ namespace auto std::string {
*/ */
struct NullStringBase<DataType> { struct NullStringBase<DataType> {
DataType string[while($[$] != 0x00)]; DataType string[while($[$] != 0x00)];
} [[format("std::string::impl::format_null_string")]]; } [[sealed, format("std::string::impl::format_string"), transform("std::string::impl::format_string")]];
/** /**
A null-terminated ASCII string. A null-terminated ASCII string.
@@ -50,14 +50,10 @@ namespace auto std::string {
namespace impl { namespace impl {
fn format_sized_string(ref auto string) { fn format_string(ref auto string) {
return string.data; return string.data;
}; };
fn format_null_string(ref auto null_string) {
return null_string.string;
};
} }
/** /**