From 36ef5cd112e4512ad8fcbf847ae0134860188c8e Mon Sep 17 00:00:00 2001 From: stephena Date: Tue, 14 Jul 2015 20:34:47 +0000 Subject: [PATCH] Enable extra warnings for VS build. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3188 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- src/common/bspf.hxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/bspf.hxx b/src/common/bspf.hxx index e32dc0af5..a38461353 100644 --- a/src/common/bspf.hxx +++ b/src/common/bspf.hxx @@ -70,6 +70,9 @@ using BytePtr = unique_ptr; #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