Commit 773281c1f4

Noam Preil <pleasantatk@gmail.com>
2020-05-17 11:17:39
Remove trailing whitespace
1 parent e2196a4
Changed files (2)
src-self-hosted
src-self-hosted/backend/x86.zig
@@ -21,7 +21,6 @@ pub const Register = enum(u8) {
     pub fn id(self: @This()) u3 {
         return @truncate(u3, @enumToInt(self));
     }
-    
 };
 
 // zig fmt: on
src-self-hosted/backend/x86_64.zig
@@ -37,7 +37,6 @@ pub const Register = enum(u8) {
     pub fn id(self: @This()) u4 {
         return @truncate(u4, @enumToInt(self));
     }
-    
 };
 
 // zig fmt: on