mirror of https://github.com/stella-emu/stella.git
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:
parent
f1a10c3143
commit
36ef5cd112
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue