Skip to content

Commit

Permalink
patch 7.4.1442
Browse files Browse the repository at this point in the history
Problem:    MS-Windows: more compilation warnings for destructor.
Solution:   Add "virtual". (Ken Takata)
  • Loading branch information
brammool committed Feb 27, 2016
1 parent e26643e commit e0fd2aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/if_ole.cpp
Expand Up @@ -96,7 +96,7 @@ static CVim *app = 0;
class CVim : public IVim
{
public:
~CVim();
virtual ~CVim();
static CVim *Create(int *pbDoRestart);

// IUnknown members
Expand Down Expand Up @@ -432,6 +432,7 @@ class CVimCF : public IClassFactory
{
public:
static CVimCF *Create();
virtual ~CVimCF() {};

STDMETHOD(QueryInterface)(REFIID riid, void ** ppv);
STDMETHOD_(unsigned long, AddRef)(void);
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -743,6 +743,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1442,
/**/
1441,
/**/
Expand Down

0 comments on commit e0fd2aa

Please sign in to comment.