| author | |
| committer | |
| log | 34923e071e6f9f46ab8abb645929b975ef9ba7ff |
| tree | 42e844d0791643618cf57fc33de7227d393aa731 |
| parent | 692f38c2509da047e8be15fd7a932aa204f33fd3 |
| signature | Commit is signed but in an unrecognized format. |
1 files changed, 2 insertions(+), 2 deletions(-)
src-self-hosted/codegen/c.zig+2-2| ... | ... | @@ -11,8 +11,8 @@ const C = link.File.C; |
| 11 | 11 | const Decl = Module.Decl; |
| 12 | 12 | const mem = std.mem; |
| 13 | 13 | |
| 14 | /// Maps a name from Zig source to C. This will always give the same output for | |
| 15 | /// any given input. | |
| 14 | /// Maps a name from Zig source to C. Currently, this will always give the same | |
| 15 | /// output for any given input, sometimes resulting in broken identifiers. | |
| 16 | 16 | fn map(allocator: *std.mem.Allocator, name: []const u8) ![]const u8 { |
| 17 | 17 | return allocator.dupe(u8, name); |
| 18 | 18 | } |