diff options
Diffstat (limited to 'cpp/src/IcePatch2Lib/ClientUtil.cpp')
-rw-r--r-- | cpp/src/IcePatch2Lib/ClientUtil.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2Lib/ClientUtil.cpp b/cpp/src/IcePatch2Lib/ClientUtil.cpp index d37f6af9b98..66d315f8a6b 100644 --- a/cpp/src/IcePatch2Lib/ClientUtil.cpp +++ b/cpp/src/IcePatch2Lib/ClientUtil.cpp @@ -9,7 +9,6 @@ #include <IceUtil/StringUtil.h> #include <IceUtil/FileUtil.h> -#define ICE_PATCH2_API_EXPORTS #include <IcePatch2/ClientUtil.h> #include <IcePatch2Lib/Util.h> #include <list> @@ -21,6 +20,17 @@ using namespace IceUtil; using namespace IcePatch2; using namespace IcePatch2Internal; + +IcePatch2::Patcher::~Patcher() +{ + // Out of line to avoid weak vtable +} + +IcePatch2::PatcherFeedback::~PatcherFeedback() +{ + // Out of line to avoid weak vtable +} + namespace { |