From 47bb62b051a6307856ba6522b3298730ee8a23a3 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 11 Feb 2016 16:11:49 -0600 Subject: [PATCH] Disable another useless MSVC warning --- src/misc/pv/epicsException.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/misc/pv/epicsException.h b/src/misc/pv/epicsException.h index a5f9734..e1ba44d 100644 --- a/src/misc/pv/epicsException.h +++ b/src/misc/pv/epicsException.h @@ -64,7 +64,8 @@ #if defined(_WIN32) && !defined(_MINGW) #pragma warning( push ) -#pragma warning(disable: 4275) // warning C4275: non dll-interface class used as base for dll-interface class (std::logic_error) +#pragma warning(disable: 4275) // non dll-interface class used as base for dll-interface class (std::logic_error) +#pragma warning(disable: 4251) // class std::string needs to have dll-interface to be used by clients #endif namespace epics { namespace pvData {