Make wxMBConv dtor inline

The Darwin linking problem mentioned in the comment doesn't exist in any
of the still supported macOS versions, so it doesn't make sense to
continue working around it.
This commit is contained in:
Vadim Zeitlin
2017-11-02 01:27:24 +01:00
parent b3fe07942f
commit 8bf239f8e4
2 changed files with 1 additions and 6 deletions

View File

@@ -160,7 +160,7 @@ public:
virtual wxMBConv *Clone() const = 0;
// virtual dtor for any base class
virtual ~wxMBConv();
virtual ~wxMBConv() { }
};
// ----------------------------------------------------------------------------