diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-07-14 18:27:51 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-07-14 18:27:51 -0400 |
| commit | 4d920cee6e8be2f2ae2cfd9067358c65b977568a (patch) | |
| tree | 2c04de6151b7448dec9958d0a91234ea0ba9a15d /std/macho.zig | |
| parent | da3acacc14331a6be33445c3bfd204e2cccabddd (diff) | |
| parent | 28c3d4809bc6d497ac81892bc7eb03b95d8c2b32 (diff) | |
| download | zig-4d920cee6e8be2f2ae2cfd9067358c65b977568a.tar.gz zig-4d920cee6e8be2f2ae2cfd9067358c65b977568a.zip | |
Merge remote-tracking branch 'origin/master' into llvm7
Diffstat (limited to 'std/macho.zig')
| -rw-r--r-- | std/macho.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/macho.zig b/std/macho.zig index fe5409ad4d..33c170ff43 100644 --- a/std/macho.zig +++ b/std/macho.zig @@ -42,7 +42,7 @@ pub const Symbol = struct { name: []const u8, address: u64, - fn addressLessThan(lhs: *const Symbol, rhs: *const Symbol) bool { + fn addressLessThan(lhs: Symbol, rhs: Symbol) bool { return lhs.address < rhs.address; } }; |
