| author | |
| committer | |
| log | 9ad1e83e631a19094b4994a9cecfd24763a2684a |
| tree | 02b980d1e106166cc106c46e8e26c8c5476eb447 |
| parent | f4d328e2ac0583336085f647df18c7430b7948be |
3 files changed, 3 insertions(+), 1 deletions(-)
lib/compiler/aro/aro/Attribute/names.zig+1| ... | ... | @@ -1,4 +1,5 @@ |
| 1 | 1 | //! Autogenerated by GenerateDef from src/aro/Attribute/names.def, do not edit |
| 2 | // zig fmt: off | |
| 2 | 3 | |
| 3 | 4 | const std = @import("std"); |
| 4 | 5 |
lib/compiler/aro/aro/Builtins/Builtin.zig+1| ... | ... | @@ -1,4 +1,5 @@ |
| 1 | 1 | //! Autogenerated by GenerateDef from src/aro/Builtins/Builtin.def, do not edit |
| 2 | // zig fmt: off | |
| 2 | 3 | |
| 3 | 4 | const std = @import("std"); |
| 4 | 5 |
lib/std/zig/c_translation/helpers.zig+1-1| ... | ... | @@ -228,7 +228,7 @@ fn castInt(comptime DestType: type, target: anytype) DestType { |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | fn castPtr(comptime DestType: type, target: anytype) DestType { |
| 231 | return @constCast(@volatileCast(@alignCast(@ptrCast(target)))); | |
| 231 | return @ptrCast(@alignCast(@constCast(@volatileCast(target)))); | |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | fn castToPtr(comptime DestType: type, comptime SourceType: type, target: anytype) DestType { |