[geos-commits] r4345 - trunk/include/geos/util

Mateusz Loskot mateusz at loskot.net
Mon Mar 20 16:23:14 PDT 2017


Author: mloskot
Date: 2017-03-20 16:23:14 -0700 (Mon, 20 Mar 2017)
New Revision: 4345

Modified:
   trunk/include/geos/util/GEOSException.h
Log:
Disable warning C4275: non-DLL-interface std::exception used as base for DLL-interface GEOSException

Modified: trunk/include/geos/util/GEOSException.h
===================================================================
--- trunk/include/geos/util/GEOSException.h	2017-03-20 23:20:37 UTC (rev 4344)
+++ trunk/include/geos/util/GEOSException.h	2017-03-20 23:23:14 UTC (rev 4345)
@@ -1,4 +1,4 @@
-/**********************************************************************
+/**********************************************************************
  *
  * GEOS - Geometry Engine Open Source
  * http://geos.osgeo.org
@@ -23,6 +23,7 @@
 #ifdef _MSC_VER
 #pragma warning(push)
 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
+#pragma warning(disable: 4275) // warning C4275: non-DLL-interface std::exception used as base for DLL-interface GEOSException
 #endif
 
 namespace geos {



More information about the geos-commits mailing list