Skip to content
Snippets Groups Projects
Commit 27cb06b9 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

WRG: silence warning 4275 : non-DLL-interface std::runtime_error used as base...

WRG: silence warning 4275 : non-DLL-interface std::runtime_error used as base for DLL-interface Error
parent be4ab7cf
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,11 @@
#include <sstream>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4275) // warning C4275: non-DLL-interface std::runtime_error used as base for DLL-interface Error
#endif
namespace otb { namespace gl {
/**
......@@ -105,4 +110,8 @@ CheckError()
} // End namespace otb.
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#endif // otb_GlError_h
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment