diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2013-12-09 11:24:22 -0800 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2013-12-09 11:24:22 -0800 |
commit | dcacc8d955ec0aa967286f261d95f023f54c4130 (patch) | |
tree | 3451b21ff9b0d431cb8c84360e3b37ee05005835 | |
parent | 9abf447b72dcdce7eea837e224e69d01c6352e04 (diff) | |
parent | 210f16c02c367982cdc25837412150134f96f316 (diff) |
Merge pull request #3562 from Karlson2k/vfs_update_small_02
[vfs] CFile: remove 'virtual' from destructor
-rw-r--r-- | xbmc/filesystem/File.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/filesystem/File.h b/xbmc/filesystem/File.h index 7c89586e5c..d64acc2e65 100644 --- a/xbmc/filesystem/File.h +++ b/xbmc/filesystem/File.h @@ -100,7 +100,7 @@ class CFile { public: CFile(); - virtual ~CFile(); + ~CFile(); bool Open(const CStdString& strFileName, const unsigned int flags = 0); bool OpenForWrite(const CStdString& strFileName, bool bOverWrite = false); |