mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
Fix std::atomic compiling error (#15781)
This commit is contained in:
parent
19462e43d6
commit
40b2face74
1 changed files with 1 additions and 1 deletions
|
@ -447,7 +447,7 @@ class RayletClient : public RayletClientInterface {
|
|||
std::unique_ptr<RayletConnection> conn_;
|
||||
|
||||
/// The number of object ID pin RPCs currently in flight.
|
||||
std::atomic_int64_t pins_in_flight_{0};
|
||||
std::atomic<int64_t> pins_in_flight_{0};
|
||||
};
|
||||
|
||||
} // namespace raylet
|
||||
|
|
Loading…
Add table
Reference in a new issue