aboutsummaryrefslogtreecommitdiff
path: root/std/macho.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-07-14 18:27:51 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-07-14 18:27:51 -0400
commit4d920cee6e8be2f2ae2cfd9067358c65b977568a (patch)
tree2c04de6151b7448dec9958d0a91234ea0ba9a15d /std/macho.zig
parentda3acacc14331a6be33445c3bfd204e2cccabddd (diff)
parent28c3d4809bc6d497ac81892bc7eb03b95d8c2b32 (diff)
downloadzig-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.zig2
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;
}
};