remove hard tabs from source code

these are illegal according to the spec
This commit is contained in:
Andrew Kelley
2024-07-31 14:03:20 -07:00
parent 377e8579f9
commit a7029496d1
7 changed files with 107 additions and 111 deletions

View File

@@ -26,17 +26,17 @@ pub fn addCases(cases: *tests.RunTranslatedCContext) void {
\\void baz(void);
\\struct foo { int x; };
\\void bar() {
\\ struct foo tmp;
\\ struct foo tmp;
\\}
\\
\\void baz() {
\\ struct foo tmp;
\\ struct foo tmp;
\\}
\\
\\int main(void) {
\\ bar();
\\ baz();
\\ return 0;
\\ bar();
\\ baz();
\\ return 0;
\\}
, "");
@@ -53,7 +53,7 @@ pub fn addCases(cases: *tests.RunTranslatedCContext) void {
cases.add("parenthesized string literal",
\\void foo(const char *s) {}
\\int main(void) {
\\ foo(("bar"));
\\ foo(("bar"));
\\}
, "");