Skip to content

Commit

Permalink
Fix macos build
Browse files Browse the repository at this point in the history
Summary: Fix macos build and enable CI for macos.

Reviewed By: Mizuchi

Differential Revision: D69122073

fbshipit-source-id: bacff92cc9dbac4e470551fd00fb93a2b97f0c47
  • Loading branch information
yoney authored and facebook-github-bot committed Feb 4, 2025
1 parent 5e36113 commit b15843e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion third-party/thrift/src/thrift/lib/cpp2/op/HashTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ class DebugHasher {
combine(other.result_);
}

bool operator<(const DebugHasher& other) { return result_ < other.result_; }
bool operator<(const DebugHasher& other) const {
return result_ < other.result_;
}

private:
void handlePrefix() {
Expand Down

0 comments on commit b15843e

Please sign in to comment.