diff options
author | Bernard Normier <bernard@zeroc.com> | 2020-04-30 14:25:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 14:25:43 -0400 |
commit | c50c3caeb3a84d442be0665988f25fd45c579b9f (patch) | |
tree | 5e61f37d093a8d7778698c8b65ff03b39d4e99ec /cpp/src/Ice/ImplicitContextI.cpp | |
parent | Fix build failured, introduce in previous commit (diff) | |
download | ice-c50c3caeb3a84d442be0665988f25fd45c579b9f.tar.bz2 ice-c50c3caeb3a84d442be0665988f25fd45c579b9f.tar.xz ice-c50c3caeb3a84d442be0665988f25fd45c579b9f.zip |
Fixed warnings (#824)
Diffstat (limited to 'cpp/src/Ice/ImplicitContextI.cpp')
-rw-r--r-- | cpp/src/Ice/ImplicitContextI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ImplicitContextI.cpp b/cpp/src/Ice/ImplicitContextI.cpp index c9d60b2ae4e..82cb8b70ef7 100644 --- a/cpp/src/Ice/ImplicitContextI.cpp +++ b/cpp/src/Ice/ImplicitContextI.cpp @@ -471,7 +471,7 @@ PerThreadImplicitContext::clearThreadContext() const # ifdef _WIN32 if(TlsSetValue(_key, 0) == 0) { - IceUtil::ThreadSyscallException(__FILE__, __LINE__, GetLastError()); + throw IceUtil::ThreadSyscallException(__FILE__, __LINE__, GetLastError()); } # else if(int err = pthread_setspecific(_key, 0)) |