diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-06-27 16:29:41 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-06-27 16:29:41 -0400 |
commit | fff68e2470492ef3c7b80654f4c5977066d89323 (patch) | |
tree | c3147db6d0b745428ad53a717b35b828759ee8bc /cpp/src/Ice/AsyncResult.cpp | |
parent | Refactored SSL and iAP transports, support for running SSL on top (diff) | |
download | ice-fff68e2470492ef3c7b80654f4c5977066d89323.tar.bz2 ice-fff68e2470492ef3c7b80654f4c5977066d89323.tar.xz ice-fff68e2470492ef3c7b80654f4c5977066d89323.zip |
Exported classes no longer have weak vtables with clang
Diffstat (limited to 'cpp/src/Ice/AsyncResult.cpp')
-rw-r--r-- | cpp/src/Ice/AsyncResult.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/Ice/AsyncResult.cpp b/cpp/src/Ice/AsyncResult.cpp index 7a772dd3637..60e5ac65773 100644 --- a/cpp/src/Ice/AsyncResult.cpp +++ b/cpp/src/Ice/AsyncResult.cpp @@ -18,6 +18,11 @@ using namespace Ice; IceUtil::Shared* Ice::upCast(AsyncResult* p) { return p; } +AsyncResult::~AsyncResult() +{ + // Out of line to avoid weak vtable +} + void AsyncResult::__check(const AsyncResultPtr& r, const IceProxy::Ice::Object* prx, const string& operation) { @@ -69,4 +74,3 @@ AsyncResult::__check(const AsyncResultPtr& r, const string& operation) } #endif - |