diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-24T12·31+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-02-24T12·31+0100 |
commit | bf2adf72c4fb4e04afb95ad3b2ad84c19707f246 (patch) | |
tree | a8ed9da01f7be74cfa9a1402071b0b598ee9425f /src/libutil/pool.hh | |
parent | ccdbf589a47b486876de28a9beab64360ba8b8fc (diff) |
std::condition_variable_any -> std::condition_variable
The latter is supposed to be more efficient.
Diffstat (limited to 'src/libutil/pool.hh')
-rw-r--r-- | src/libutil/pool.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/pool.hh b/src/libutil/pool.hh index b9eb2dd1ecce..f291cd578388 100644 --- a/src/libutil/pool.hh +++ b/src/libutil/pool.hh @@ -54,7 +54,7 @@ private: Sync<State> state; - std::condition_variable_any wakeup; + std::condition_variable wakeup; public: |