summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2021-01-07 23:24:08 +0100
committerJose <jose@zeroc.com>2021-01-07 23:25:00 +0100
commit514eb08af1603d05196f205d7f0ed2e52c162b80 (patch)
tree16f2725d17458bcd940acd2b6a133043c869ecae /cpp
parentFix for Visual Studio unicode string litereal testing (diff)
downloadice-514eb08af1603d05196f205d7f0ed2e52c162b80.tar.bz2
ice-514eb08af1603d05196f205d7f0ed2e52c162b80.tar.xz
ice-514eb08af1603d05196f205d7f0ed2e52c162b80.zip
Fix build failure cause by bogust typename
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/Ice/ThreadPool.h b/cpp/src/Ice/ThreadPool.h
index 1b6bf254467..2c46563570b 100644
--- a/cpp/src/Ice/ThreadPool.h
+++ b/cpp/src/Ice/ThreadPool.h
@@ -375,11 +375,7 @@ public:
// of the event handler. We need to lock the event handler here to call
// finishMessage.
//
-#if defined(__MINGW32__)
IceUtil::LockT<T> sync(_mutex);
-#else
- IceUtil::LockT<typename T> sync(_mutex);
-#endif
_current.finishMessage();
}
}