Enable extra warnings for VS build.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3188 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2015-07-14 20:34:47 +00:00
parent f1a10c3143
commit 36ef5cd112
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ using BytePtr = unique_ptr<uInt8[]>;
#define BSPF_PATH_SEPARATOR "/"
#elif defined(BSPF_WINDOWS)
#define BSPF_PATH_SEPARATOR "\\"
#pragma warning(2:4264) // no override available for virtual member function from base 'class'; function is hidden
#pragma warning(2:4265) // class has virtual functions, but destructor is not virtual
#pragma warning(2:4266) // no override available for virtual member function from base 'type'; function is hidden
#else
#error Update src/common/bspf.hxx for path separator
#endif