Commit 83fe024f authored by vladlosev's avatar vladlosev
Browse files

Adds empty methods to Mutex on platforms where Google Test is not thread-safe....

Adds empty methods to Mutex on platforms where Google Test is not thread-safe. This will support a reentrancy fix in Google Mock.
parent 4c11f25f
......@@ -1416,6 +1416,8 @@ class ThreadLocal {
class Mutex {
public:
Mutex() {}
void Lock() {}
void Unlock() {}
void AssertHeld() const {}
};
......
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