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/IcePatch2Lib/Util.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/IcePatch2Lib/Util.cpp')
-rw-r--r-- | cpp/src/IcePatch2Lib/Util.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/IcePatch2Lib/Util.cpp b/cpp/src/IcePatch2Lib/Util.cpp index ad1d00ed63f..4e89aebc6a2 100644 --- a/cpp/src/IcePatch2Lib/Util.cpp +++ b/cpp/src/IcePatch2Lib/Util.cpp @@ -1016,6 +1016,11 @@ getFileInfoSeqInternal(const string& basePath, const string& relPath, int compre } +IcePatch2Internal::GetFileInfoSeqCB::~GetFileInfoSeqCB() +{ + // Out of line to avoid weak vtable +} + bool IcePatch2Internal::getFileInfoSeq(const string& basePath, int compress, GetFileInfoSeqCB* cb, LargeFileInfoSeq& infoSeq) |