diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-08-06 14:27:18 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-08-06 16:50:10 +0100 |
commit | 313f5ebd1e5116b84b57f7399326137176d10ace (patch) | |
tree | a1eac8a9d1aea0c430a23ac83dac2608bc25a9f7 | |
parent | Add missing special members to IceBase (diff) | |
download | slicer-313f5ebd1e5116b84b57f7399326137176d10ace.tar.bz2 slicer-313f5ebd1e5116b84b57f7399326137176d10ace.tar.xz slicer-313f5ebd1e5116b84b57f7399326137176d10ace.zip |
Add missing DLL_PUBLIC to IceBase destructor
-rw-r--r-- | slicer/ice/serializer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slicer/ice/serializer.h b/slicer/ice/serializer.h index 4a10508..8e8ff03 100644 --- a/slicer/ice/serializer.h +++ b/slicer/ice/serializer.h @@ -10,7 +10,7 @@ #include <visibility.h> namespace Slicer { - class IceBase { + class DLL_PUBLIC IceBase { public: virtual ~IceBase(); |