Skip to content

Commit

Permalink
Get rid of a trailing space in Compilation.zig.
Browse files Browse the repository at this point in the history
This kept tripping me up because I have my editor configured to eliminate trailing white space on save.
  • Loading branch information
alexrp authored and ehaas committed Jul 27, 2024
1 parent 0ba90c7 commit bc836b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aro/Compilation.zig
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,8 @@ pub fn generateBuiltinMacros(comp: *Compilation, system_defines_mode: SystemDefi

if (system_defines_mode == .include_system_defines) {
try buf.appendSlice(
\\#define __VERSION__ "Aro
++ @import("backend").version_str ++ "\"\n" ++
\\#define __VERSION__ "Aro
++ " " ++ @import("backend").version_str ++ "\"\n" ++
\\#define __Aro__
\\
);
Expand Down

0 comments on commit bc836b9

Please sign in to comment.