Skip to content
Snippets Groups Projects
Commit 91406500 authored by Mathis Kelm's avatar Mathis Kelm
Browse files

add missing #include config.h to source files

parent 5e1b570b
No related branches found
No related tags found
1 merge request!3731add missing #include config.h to source files
Pipeline #38980 passed
+3
......@@ -9,6 +9,10 @@
//
// For the license information refer to format.h.
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "format-inl.h"
FMT_BEGIN_NAMESPACE
......
......@@ -5,6 +5,10 @@
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <dune/python/pybind11/pybind11.h>
#include <dune/python/pybind11/stl.h>
......
......@@ -11,6 +11,10 @@
* \brief Testing the Dumux property system
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <type_traits>
......
......@@ -11,6 +11,10 @@
* \brief Testing the Dumux property system
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <type_traits>
......
......@@ -10,6 +10,11 @@
* \ingroup Tests
* \brief A property system example using property type aliases
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <type_traits>
#include <dumux/common/properties/propertysystem.hh>
......
......@@ -2,6 +2,11 @@
// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <dune/common/exceptions.hh>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment