Browse Source
Merge pull request #279 from jpcima/msvc-cmake
msvc: warning suppressions for template instantiations
pull/280/head
JP Cimalando
GitHub
4 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
15 additions and
0 deletions
-
dgl/src/Cairo.cpp
-
dgl/src/Geometry.cpp
-
dgl/src/OpenGL.cpp
|
|
@@ -15,6 +15,11 @@ |
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
|
|
*/ |
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
// instantiated template classes whose methods are defined elsewhere |
|
|
|
# pragma warning(disable:4661) |
|
|
|
#endif |
|
|
|
|
|
|
|
#include "../Cairo.hpp" |
|
|
|
#include "../Color.hpp" |
|
|
|
#include "../ImageBaseWidgets.hpp" |
|
|
|
|
|
@@ -14,6 +14,11 @@ |
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
|
|
*/ |
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
// instantiated template classes whose methods are defined elsewhere |
|
|
|
# pragma warning(disable:4661) |
|
|
|
#endif |
|
|
|
|
|
|
|
#include "../Geometry.hpp" |
|
|
|
|
|
|
|
#include <cmath> |
|
|
|
|
|
@@ -14,6 +14,11 @@ |
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
|
|
*/ |
|
|
|
|
|
|
|
#ifdef _MSC_VER |
|
|
|
// instantiated template classes whose methods are defined elsewhere |
|
|
|
# pragma warning(disable:4661) |
|
|
|
#endif |
|
|
|
|
|
|
|
#include "../OpenGL.hpp" |
|
|
|
#include "../Color.hpp" |
|
|
|
#include "../ImageWidgets.hpp" |
|
|
|