Commit 84b7ed11 by JF Bastien

Fix missing header include

<mutex> is already included from IceDefs.h (where GlobalLockType is defined) but <condition_variable> isn't included anywhere. It's probably included indirectly in some standard libraries and not others, causing build failures on Windows. TBR= stichnot@chromium.org BUG= none Review URL: https://codereview.chromium.org/884283002
parent 0c729c8c
......@@ -15,7 +15,7 @@
#define SUBZERO_SRC_ICEUTILS_H
#include <climits>
#include <mutex>
#include <condition_variable>
namespace Ice {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment