1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-22 02:09:36 +01:00

std::condition_variable_any -> std::condition_variable

The latter is supposed to be more efficient.
This commit is contained in:
Eelco Dolstra 2016-02-24 13:31:46 +01:00
parent ccdbf589a4
commit bf2adf72c4
2 changed files with 11 additions and 11 deletions

View file

@ -54,7 +54,7 @@ private:
Sync<State> state;
std::condition_variable_any wakeup;
std::condition_variable wakeup;
public: