From 59e622a8b4e0de2bb4b048ed2af75ba3edceba28 Mon Sep 17 00:00:00 2001 From: Martin Nolte <mnolte@dune-project.org> Date: Thu, 15 Oct 2009 19:56:03 +0000 Subject: [PATCH] add missing include dune/common/misc.hh [[Imported from SVN: r5662]] --- dune/common/fmatrix.hh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/dune/common/fmatrix.hh b/dune/common/fmatrix.hh index f9591c2b7..d42da948d 100644 --- a/dune/common/fmatrix.hh +++ b/dune/common/fmatrix.hh @@ -7,12 +7,15 @@ #include <cmath> #include <cstddef> #include <iostream> -#include "exceptions.hh" -#include "fvector.hh" -#include "precision.hh" -#include "static_assert.hh" -namespace Dune { +#include <dune/common/misc.hh> +#include <dune/common/exceptions.hh> +#include <dune/common/fvector.hh> +#include <dune/common/precision.hh> +#include <dune/common/static_assert.hh> + +namespace Dune +{ template<class K, int ROWS, int COLS> class FieldMatrix; -- GitLab