| ... | @@ -11,8 +11,8 @@ const C = link.File.C; | ... | @@ -11,8 +11,8 @@ const C = link.File.C; |
| 11 | const Decl = Module.Decl; | 11 | const Decl = Module.Decl; |
| 12 | const mem = std.mem; | 12 | const mem = std.mem; |
| 13 | | 13 | |
| 14 | /// Maps a name from Zig source to C. This will always give the same output for | 14 | /// Maps a name from Zig source to C. Currently, this will always give the same |
| 15 | /// any given input. | 15 | /// output for any given input, sometimes resulting in broken identifiers. |
| 16 | fn map(allocator: *std.mem.Allocator, name: []const u8) ![]const u8 { | 16 | fn map(allocator: *std.mem.Allocator, name: []const u8) ![]const u8 { |
| 17 | return allocator.dupe(u8, name); | 17 | return allocator.dupe(u8, name); |
| 18 | } | 18 | } |