Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (unstable)

forceinline.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5#ifndef DUNE_COMMON_FORCEINLINE_HH
6#define DUNE_COMMON_FORCEINLINE_HH
7
32#if defined(__clang__)
33 // Clang does not generate an error for non-inlinable `always_inline` functions.
34 #define DUNE_FORCE_INLINE __attribute__((always_inline)) inline
35
36#elif defined(__GNUC__)
37 // GCC would generate an error if it can't always_inline
38 #define DUNE_FORCE_INLINE __attribute__((always_inline)) inline
39
40#elif defined(_MSC_VER)
41 // MSVC generates a warning for for non-inlinable `__forceinline` functions. But
42 // only if compiled with any "inline expansion" optimization (`/Ob<n>`). This is
43 // present with `/O1` or `/O2`. We promote this warning to an error.
44 #pragma warning(error: 4714)
45 #define DUNE_FORCE_INLINE [[msvc::forceinline]]
46
47#else
48 // fallback to `inline` in case the compiler cannot be detected.
49 #define DUNE_FORCE_INLINE inline
50#endif
51
52#endif // DUNE_COMMON_FORCEINLINE_HH
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 2, 23:03, 2025)