file Utils/begin_ignore_warnings_hepmc.hpp
[No description available] More…
Detailed Description
Author:
- Anders Kvellestad (anders.kvellestad@fys.uio.no)
- Tomas Gonzalo (gonzalo@physik.rwth-aachen.de)
Date:
- 2021 Jul
- 2022 Apr
Pragma directives to suppress compiler warnings coming from including HepMC library headers.
Authors (add name and date if you modify):
Source code
// GAMBIT: Global and Modular BSM Inference Tool
// *********************************************
/// \file
///
/// Pragma directives to suppress compiler warnings
/// coming from including HepMC library headers.
///
/// *********************************************
///
/// Authors (add name and date if you modify):
///
/// \author Anders Kvellestad
/// (anders.kvellestad@fys.uio.no)
/// \date 2021 Jul
///
/// \author Tomas Gonzalo
/// (gonzalo@physik.rwth-aachen.de)
/// \date 2022 Apr
///
/// *********************************************
#include "gambit/cmake/cmake_variables.hpp"
#ifdef SUPPRESS_LIBRARY_WARNINGS
// GCC:
// clang also depfines __GNUC__ so make sure it is only GCC
#if defined(__GNUC__) && !defined(__clang__)
// Save diagnostic state
#pragma GCC diagnostic push
// Don't care if an old compiler version doesn't recognize all the pragmas
#pragma GCC diagnostic ignored "-Wpragmas"
// Turn off some warnings
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif
// Clang:
// icpc apparently also defines __clang__
#if defined(__clang__) && !defined(__ICC)
// Save diagnostic state
#pragma clang diagnostic push
// Don't care if an old compiler version doesn't recognize all the pragmas
#pragma clang diagnostic ignored "-Wpragmas"
// Turn off some warnings
#pragma clang diagnostic ignored "-Wunused-parameter"
#endif
#endif
Updated on 2024-07-18 at 13:53:32 +0000