We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26643e commit e0fd2aaCopy full SHA for e0fd2aa
src/if_ole.cpp
@@ -96,7 +96,7 @@ static CVim *app = 0;
96
class CVim : public IVim
97
{
98
public:
99
- ~CVim();
+ virtual ~CVim();
100
static CVim *Create(int *pbDoRestart);
101
102
// IUnknown members
@@ -432,6 +432,7 @@ class CVimCF : public IClassFactory
432
433
434
static CVimCF *Create();
435
+ virtual ~CVimCF() {};
436
437
STDMETHOD(QueryInterface)(REFIID riid, void ** ppv);
438
STDMETHOD_(unsigned long, AddRef)(void);
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1442,
748
/**/
749
1441,
750
0 commit comments