mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0029310: Coding - multiple compiler warnings in Inspectors
1. Added specific header files to disable and restore compiler warnings: Standard_WarningsDisable.hxx, Standard_WarningsRestore.hxx. (Currently only MSVC compiler is handled.) 2. Inspector: compiler warnings are disabled for all includes of Qt headers. 3. Inspector: minor code correction to avoid warning due to use of floating point values in integer calculations.
This commit is contained in:
@@ -95,3 +95,5 @@ Standard_Underflow.hxx
|
||||
Standard_UUID.hxx
|
||||
Standard_values.h
|
||||
Standard_Version.hxx
|
||||
Standard_WarningsDisable.hxx
|
||||
Standard_WarningsRestore.hxx
|
30
src/Standard/Standard_WarningsDisable.hxx
Normal file
30
src/Standard/Standard_WarningsDisable.hxx
Normal file
@@ -0,0 +1,30 @@
|
||||
// Copyright (c) 2018 OPEN CASCADE SAS
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
//!@file Supresses compiler warnings.
|
||||
//!
|
||||
//! Standard_WarningsDisable.hxx disables all compiler warnings.
|
||||
//! Standard_WarningsRestore.hxx restore the previous state of warnings.
|
||||
//!
|
||||
//! Use these headers to wrap include directive containing external (non-OCCT)
|
||||
//! header files to avoid compiler warnings to be generated for these files.
|
||||
//! They should always be used in pair:
|
||||
//!
|
||||
//! #include <Standard_WarningsDisable.hxx>
|
||||
//! #include <dirty_header.h> // some header that can generate warnings
|
||||
//! #include <Standard_WarningsRestore.hxx>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(push, 0)
|
||||
#endif
|
||||
|
30
src/Standard/Standard_WarningsRestore.hxx
Normal file
30
src/Standard/Standard_WarningsRestore.hxx
Normal file
@@ -0,0 +1,30 @@
|
||||
// Copyright (c) 2018 OPEN CASCADE SAS
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
//!@file Restores compiler warnings suppressed by inclusion of Standard_WarningsDisable.hxx.
|
||||
//!
|
||||
//! Standard_WarningsDisable.hxx disables all compiler warnings.
|
||||
//! Standard_WarningsRestore.hxx restore the previous state of warnings.
|
||||
//!
|
||||
//! Use these headers to wrap include directive containing external (non-OCCT)
|
||||
//! header files to avoid compiler warnings to be generated for these files.
|
||||
//! They should always be used in pair:
|
||||
//!
|
||||
//! #include <Standard_WarningsDisable.hxx>
|
||||
//! #include <dirty_header.h> // some header that can generate warnings
|
||||
//! #include <Standard_WarningsRestore.hxx>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user