1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0029909: Coding - GCC compiler warnings in Qt headers while building Samples in OCCT and Products on Debian80 64 bit

Standard_WarningsDisable.hxx has been extended by ignoring -Wunused-local-typedefs within GCC compiler.
This commit is contained in:
kgv 2018-07-03 14:31:40 +03:00 committed by bugmaster
parent 3306fdd954
commit b2cd90e2b6
2 changed files with 22 additions and 5 deletions

View File

@ -24,7 +24,20 @@
//! #include <dirty_header.h> // some header that can generate warnings //! #include <dirty_header.h> // some header that can generate warnings
//! #include <Standard_WarningsRestore.hxx> //! #include <Standard_WarningsRestore.hxx>
#ifdef _MSC_VER #if defined(__clang__)
#pragma warning(push, 0) #pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wall"
#pragma clang diagnostic ignored "-Wextra"
#elif defined(_MSC_VER)
#pragma warning(push, 0)
#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
// -Wall does not work here for GCC, so the only way is to list all most important warnings...
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wenum-compare"
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
#endif
#endif #endif

View File

@ -24,7 +24,11 @@
//! #include <dirty_header.h> // some header that can generate warnings //! #include <dirty_header.h> // some header that can generate warnings
//! #include <Standard_WarningsRestore.hxx> //! #include <Standard_WarningsRestore.hxx>
#ifdef _MSC_VER #if defined(__clang__)
#pragma warning(pop) #pragma clang diagnostic pop
#elif defined(_MSC_VER)
#pragma warning(pop)
#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
#pragma GCC diagnostic pop
#endif #endif