Small styling fix

This commit is contained in:
Robin Voetter
2021-01-17 03:49:55 +01:00
parent 9eac24ee39
commit 50177211cb

View File

@@ -754,10 +754,10 @@ fn Renderer(comptime WriterType: type) type {
}
try self.writer.writeAll(": bool ");
if (bitpos == 0) { // Force alignment to integer boundaries
try self.writer.writeAll("align(@alignOf(Flags)) ");
}
try self.writer.writeAll("= false, ");
if (bitpos == 0) { // Force alignment to integer boundaries
try self.writer.writeAll("align(@alignOf(Flags)) ");
}
try self.writer.writeAll("= false, ");
}
}
try self.writer.writeAll("pub usingnamespace FlagsMixin(");