From 09a6b613813cc2cdf511fce21c9c187b498cb1b2 Mon Sep 17 00:00:00 2001
From: Felix Schindler <felix.schindler@wwu.de>
Date: Fri, 22 Jan 2016 15:56:18 +0100
Subject: [PATCH] update include guards

---
 dune/xt/la/container.hh                           | 6 +++---
 dune/xt/la/container/common.hh                    | 6 +++---
 dune/xt/la/container/container-interface.hh       | 6 +++---
 dune/xt/la/container/eigen.hh                     | 6 +++---
 dune/xt/la/container/eigen/base.hh                | 6 +++---
 dune/xt/la/container/eigen/dense.hh               | 6 +++---
 dune/xt/la/container/eigen/sparse.hh              | 6 +++---
 dune/xt/la/container/interfaces.hh                | 6 +++---
 dune/xt/la/container/istl.hh                      | 6 +++---
 dune/xt/la/container/matrix-interface.hh          | 6 +++---
 dune/xt/la/container/pattern.hh                   | 6 +++---
 dune/xt/la/container/vector-interface-internal.hh | 6 +++---
 dune/xt/la/container/vector-interface.hh          | 6 +++---
 dune/xt/la/solver.hh                              | 6 +++---
 dune/xt/la/solver/common.hh                       | 6 +++---
 dune/xt/la/solver/eigen.hh                        | 6 +++---
 dune/xt/la/solver/fasp.hh                         | 6 +++---
 dune/xt/la/solver/istl.hh                         | 6 +++---
 dune/xt/la/solver/istl/amg.hh                     | 6 +++---
 dune/xt/la/test/container.hh                      | 6 +++---
 20 files changed, 60 insertions(+), 60 deletions(-)

diff --git a/dune/xt/la/container.hh b/dune/xt/la/container.hh
index ef991803f..ca2f5376d 100644
--- a/dune/xt/la/container.hh
+++ b/dune/xt/la/container.hh
@@ -6,8 +6,8 @@
 //   Felix Schindler (2013 - 2014)
 //   Rene Milk       (2015)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_HH
-#define DUNE_STUFF_LA_CONTAINER_HH
+#ifndef DUNE_XT_LA_CONTAINER_HH
+#define DUNE_XT_LA_CONTAINER_HH
 
 #include "container/interfaces.hh"
 #include "container/common.hh"
@@ -89,4 +89,4 @@ void ensure_parallel_dof_consistency(VectorImp<typename Space::RangeFieldType>&
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_HH
+#endif // DUNE_XT_LA_CONTAINER_HH
diff --git a/dune/xt/la/container/common.hh b/dune/xt/la/container/common.hh
index ab1d925e6..75e18c51f 100644
--- a/dune/xt/la/container/common.hh
+++ b/dune/xt/la/container/common.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_COMMON_HH
-#define DUNE_STUFF_LA_CONTAINER_COMMON_HH
+#ifndef DUNE_XT_LA_CONTAINER_COMMON_HH
+#define DUNE_XT_LA_CONTAINER_COMMON_HH
 
 #include <cmath>
 #include <initializer_list>
@@ -634,4 +634,4 @@ struct MatrixAbstraction<LA::CommonDenseMatrix<T>>
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_COMMON_HH
+#endif // DUNE_XT_LA_CONTAINER_COMMON_HH
diff --git a/dune/xt/la/container/container-interface.hh b/dune/xt/la/container/container-interface.hh
index 75cf4e297..d43b4323b 100644
--- a/dune/xt/la/container/container-interface.hh
+++ b/dune/xt/la/container/container-interface.hh
@@ -7,8 +7,8 @@
 //   Rene Milk       (2014 - 2015)
 //   Tobias Leibner  (2014 - 2015)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_CONTAINER_INTERFACE_HH
-#define DUNE_STUFF_LA_CONTAINER_CONTAINER_INTERFACE_HH
+#ifndef DUNE_XT_LA_CONTAINER_CONTAINER_INTERFACE_HH
+#define DUNE_XT_LA_CONTAINER_CONTAINER_INTERFACE_HH
 
 #include <cmath>
 #include <limits>
@@ -273,4 +273,4 @@ public:
 } // namespace Stuff
 } // namespace Dune
 
-#endif // #ifndef DUNE_STUFF_LA_CONTAINER_CONTAINER_INTERFACE_HH
+#endif // #ifndef DUNE_XT_LA_CONTAINER_CONTAINER_INTERFACE_HH
diff --git a/dune/xt/la/container/eigen.hh b/dune/xt/la/container/eigen.hh
index b6d1295fa..2458675c0 100644
--- a/dune/xt/la/container/eigen.hh
+++ b/dune/xt/la/container/eigen.hh
@@ -8,10 +8,10 @@
 //   Sven Kaulmann   (2014)
 //   Tobias Leibner  (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_EIGEN_HH
-#define DUNE_STUFF_LA_CONTAINER_EIGEN_HH
+#ifndef DUNE_XT_LA_CONTAINER_EIGEN_HH
+#define DUNE_XT_LA_CONTAINER_EIGEN_HH
 
 #include "eigen/dense.hh"
 #include "eigen/sparse.hh"
 
-#endif // DUNE_STUFF_LA_CONTAINER_EIGEN_HH
+#endif // DUNE_XT_LA_CONTAINER_EIGEN_HH
diff --git a/dune/xt/la/container/eigen/base.hh b/dune/xt/la/container/eigen/base.hh
index a4413ad32..94e316429 100644
--- a/dune/xt/la/container/eigen/base.hh
+++ b/dune/xt/la/container/eigen/base.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_EIGEN_BASE_HH
-#define DUNE_STUFF_LA_CONTAINER_EIGEN_BASE_HH
+#ifndef DUNE_XT_LA_CONTAINER_EIGEN_BASE_HH
+#define DUNE_XT_LA_CONTAINER_EIGEN_BASE_HH
 
 #include <memory>
 #include <type_traits>
@@ -315,4 +315,4 @@ class EigenBaseVector
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_EIGEN_BASE_HH
+#endif // DUNE_XT_LA_CONTAINER_EIGEN_BASE_HH
diff --git a/dune/xt/la/container/eigen/dense.hh b/dune/xt/la/container/eigen/dense.hh
index 238705c77..f95d3a586 100644
--- a/dune/xt/la/container/eigen/dense.hh
+++ b/dune/xt/la/container/eigen/dense.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_EIGEN_DENSE_HH
-#define DUNE_STUFF_LA_CONTAINER_EIGEN_DENSE_HH
+#ifndef DUNE_XT_LA_CONTAINER_EIGEN_DENSE_HH
+#define DUNE_XT_LA_CONTAINER_EIGEN_DENSE_HH
 
 #include <memory>
 #include <type_traits>
@@ -688,4 +688,4 @@ struct MatrixAbstraction<LA::EigenDenseMatrix<T>> : public LA::internal::MatrixA
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_EIGEN_DENSE_HH
+#endif // DUNE_XT_LA_CONTAINER_EIGEN_DENSE_HH
diff --git a/dune/xt/la/container/eigen/sparse.hh b/dune/xt/la/container/eigen/sparse.hh
index ee6ca3870..aeccb7723 100644
--- a/dune/xt/la/container/eigen/sparse.hh
+++ b/dune/xt/la/container/eigen/sparse.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014 - 2015)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_EIGEN_SPARSE_HH
-#define DUNE_STUFF_LA_CONTAINER_EIGEN_SPARSE_HH
+#ifndef DUNE_XT_LA_CONTAINER_EIGEN_SPARSE_HH
+#define DUNE_XT_LA_CONTAINER_EIGEN_SPARSE_HH
 
 #include <memory>
 #include <type_traits>
@@ -472,4 +472,4 @@ struct MatrixAbstraction<LA::EigenRowMajorSparseMatrix<T>>
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_EIGEN_SPARSE_HH
+#endif // DUNE_XT_LA_CONTAINER_EIGEN_SPARSE_HH
diff --git a/dune/xt/la/container/interfaces.hh b/dune/xt/la/container/interfaces.hh
index cca6befde..666ea4b0a 100644
--- a/dune/xt/la/container/interfaces.hh
+++ b/dune/xt/la/container/interfaces.hh
@@ -7,11 +7,11 @@
 //   Rene Milk       (2013 - 2015)
 //   Tobias Leibner  (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_INTERFACES_HH
-#define DUNE_STUFF_LA_CONTAINER_INTERFACES_HH
+#ifndef DUNE_XT_LA_CONTAINER_INTERFACES_HH
+#define DUNE_XT_LA_CONTAINER_INTERFACES_HH
 
 #include "container-interface.hh"
 #include "vector-interface.hh"
 #include "matrix-interface.hh"
 
-#endif // DUNE_STUFF_LA_CONTAINER_INTERFACES_HH
+#endif // DUNE_XT_LA_CONTAINER_INTERFACES_HH
diff --git a/dune/xt/la/container/istl.hh b/dune/xt/la/container/istl.hh
index 0004253c9..4bbf6b8b5 100644
--- a/dune/xt/la/container/istl.hh
+++ b/dune/xt/la/container/istl.hh
@@ -9,8 +9,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_ISTL_HH
-#define DUNE_STUFF_LA_CONTAINER_ISTL_HH
+#ifndef DUNE_XT_LA_CONTAINER_ISTL_HH
+#define DUNE_XT_LA_CONTAINER_ISTL_HH
 
 #include <vector>
 #include <initializer_list>
@@ -804,4 +804,4 @@ struct MatrixAbstraction<LA::IstlRowMajorSparseMatrix<T>>
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_ISTL_HH
+#endif // DUNE_XT_LA_CONTAINER_ISTL_HH
diff --git a/dune/xt/la/container/matrix-interface.hh b/dune/xt/la/container/matrix-interface.hh
index 366c9634d..4ce71c6ed 100644
--- a/dune/xt/la/container/matrix-interface.hh
+++ b/dune/xt/la/container/matrix-interface.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_MATRIX_INTERFACE_HH
-#define DUNE_STUFF_LA_CONTAINER_MATRIX_INTERFACE_HH
+#ifndef DUNE_XT_LA_CONTAINER_MATRIX_INTERFACE_HH
+#define DUNE_XT_LA_CONTAINER_MATRIX_INTERFACE_HH
 
 #include <cmath>
 #include <limits>
@@ -391,4 +391,4 @@ struct MatrixAbstractionBase
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_MATRIX_INTERFACE_HH
+#endif // DUNE_XT_LA_CONTAINER_MATRIX_INTERFACE_HH
diff --git a/dune/xt/la/container/pattern.hh b/dune/xt/la/container/pattern.hh
index 56075f729..3f47f9d54 100644
--- a/dune/xt/la/container/pattern.hh
+++ b/dune/xt/la/container/pattern.hh
@@ -7,8 +7,8 @@
 //   Rene Milk       (2013 - 2015)
 //   Sven Kaulmann   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_PATTERN_HH
-#define DUNE_STUFF_LA_CONTAINER_PATTERN_HH
+#ifndef DUNE_XT_LA_CONTAINER_PATTERN_HH
+#define DUNE_XT_LA_CONTAINER_PATTERN_HH
 
 #include <cstddef>
 #include <vector>
@@ -57,4 +57,4 @@ private:
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_PATTERN_HH
+#endif // DUNE_XT_LA_CONTAINER_PATTERN_HH
diff --git a/dune/xt/la/container/vector-interface-internal.hh b/dune/xt/la/container/vector-interface-internal.hh
index 4109be0d3..af1e44e32 100644
--- a/dune/xt/la/container/vector-interface-internal.hh
+++ b/dune/xt/la/container/vector-interface-internal.hh
@@ -7,8 +7,8 @@
 //   Rene Milk       (2014 - 2015)
 //   Tobias Leibner  (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
-#define DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
+#ifndef DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
+#define DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
 
 #include <iterator>
 #include <type_traits>
@@ -136,4 +136,4 @@ private:
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
+#endif // DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_INTERNAL_HH
diff --git a/dune/xt/la/container/vector-interface.hh b/dune/xt/la/container/vector-interface.hh
index 7a685ed30..55e0ced07 100644
--- a/dune/xt/la/container/vector-interface.hh
+++ b/dune/xt/la/container/vector-interface.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2013 - 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_HH
-#define DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_HH
+#ifndef DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_HH
+#define DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_HH
 
 #include <cmath>
 #include <limits>
@@ -699,4 +699,4 @@ std::ostream& operator<<(std::ostream& out, const VectorInterface<T, S>& vector)
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_CONTAINER_VECTOR_INTERFACE_HH
+#endif // DUNE_XT_LA_CONTAINER_VECTOR_INTERFACE_HH
diff --git a/dune/xt/la/solver.hh b/dune/xt/la/solver.hh
index 4a276af43..8cde2be1e 100644
--- a/dune/xt/la/solver.hh
+++ b/dune/xt/la/solver.hh
@@ -7,8 +7,8 @@
 //   Rene Milk       (2013, 2015)
 //   Tobias Leibner  (2014)
 
-#ifndef DUNE_STUFF_LA_SOLVER_HH
-#define DUNE_STUFF_LA_SOLVER_HH
+#ifndef DUNE_XT_LA_SOLVER_HH
+#define DUNE_XT_LA_SOLVER_HH
 
 #include <string>
 #include <vector>
@@ -139,4 +139,4 @@ public:
 #include "solver/eigen.hh"
 #include "solver/istl.hh"
 
-#endif // DUNE_STUFF_LA_SOLVER_HH
+#endif // DUNE_XT_LA_SOLVER_HH
diff --git a/dune/xt/la/solver/common.hh b/dune/xt/la/solver/common.hh
index d54e3fda8..398e4fc99 100644
--- a/dune/xt/la/solver/common.hh
+++ b/dune/xt/la/solver/common.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_SOLVER_COMMON_HH
-#define DUNE_STUFF_LA_SOLVER_COMMON_HH
+#ifndef DUNE_XT_LA_SOLVER_COMMON_HH
+#define DUNE_XT_LA_SOLVER_COMMON_HH
 
 #include <string>
 #include <vector>
@@ -114,4 +114,4 @@ private:
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_SOLVER_COMMON_HH
+#endif // DUNE_XT_LA_SOLVER_COMMON_HH
diff --git a/dune/xt/la/solver/eigen.hh b/dune/xt/la/solver/eigen.hh
index 9369f5b7d..1336e5d79 100644
--- a/dune/xt/la/solver/eigen.hh
+++ b/dune/xt/la/solver/eigen.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2012 - 2013, 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_SOLVER_EIGEN_HH
-#define DUNE_STUFF_LA_SOLVER_EIGEN_HH
+#ifndef DUNE_XT_LA_SOLVER_EIGEN_HH
+#define DUNE_XT_LA_SOLVER_EIGEN_HH
 
 #include <string>
 #include <vector>
@@ -599,4 +599,4 @@ class Solver<EigenRowMajorSparseMatrix<S>>
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_SOLVER_EIGEN_HH
+#endif // DUNE_XT_LA_SOLVER_EIGEN_HH
diff --git a/dune/xt/la/solver/fasp.hh b/dune/xt/la/solver/fasp.hh
index fff950a8a..7632c4702 100644
--- a/dune/xt/la/solver/fasp.hh
+++ b/dune/xt/la/solver/fasp.hh
@@ -6,8 +6,8 @@
 //   Felix Schindler (2013 - 2014)
 //   Rene Milk       (2013, 2015)
 
-#ifndef DUNE_STUFF_LA_SOLVER_FASP_HH
-#define DUNE_STUFF_LA_SOLVER_FASP_HH
+#ifndef DUNE_XT_LA_SOLVER_FASP_HH
+#define DUNE_XT_LA_SOLVER_FASP_HH
 
 #if HAVE_FASP
 #if HAVE_EIGEN
@@ -366,4 +366,4 @@ private:
 #endif // HAVE_EIGEN
 #endif // HAVE_FASP
 
-#endif // DUNE_STUFF_LA_SOLVER_FASP_HH
+#endif // DUNE_XT_LA_SOLVER_FASP_HH
diff --git a/dune/xt/la/solver/istl.hh b/dune/xt/la/solver/istl.hh
index 0c9d35e12..92203d823 100644
--- a/dune/xt/la/solver/istl.hh
+++ b/dune/xt/la/solver/istl.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014 - 2015)
 
-#ifndef DUNE_STUFF_LA_SOLVER_ISTL_HH
-#define DUNE_STUFF_LA_SOLVER_ISTL_HH
+#ifndef DUNE_XT_LA_SOLVER_ISTL_HH
+#define DUNE_XT_LA_SOLVER_ISTL_HH
 
 #include <type_traits>
 #include <cmath>
@@ -320,4 +320,4 @@ class Solver<IstlRowMajorSparseMatrix<S>, CommunicatorType>
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_SOLVER_ISTL_HH
+#endif // DUNE_XT_LA_SOLVER_ISTL_HH
diff --git a/dune/xt/la/solver/istl/amg.hh b/dune/xt/la/solver/istl/amg.hh
index 6372f369b..cc02c3b8f 100644
--- a/dune/xt/la/solver/istl/amg.hh
+++ b/dune/xt/la/solver/istl/amg.hh
@@ -8,8 +8,8 @@
 //   Rene Milk        (2014 - 2015)
 //   Tobias Leibner   (2014)
 
-#ifndef DUNE_STUFF_LA_SOLVER_ISTL_AMG_HH
-#define DUNE_STUFF_LA_SOLVER_ISTL_AMG_HH
+#ifndef DUNE_XT_LA_SOLVER_ISTL_AMG_HH
+#define DUNE_XT_LA_SOLVER_ISTL_AMG_HH
 
 #include <type_traits>
 #include <cmath>
@@ -271,4 +271,4 @@ class AmgApplicator
 } // namespace Stuff
 } // namespace Dune
 
-#endif // DUNE_STUFF_LA_SOLVER_ISTL_AMG_HH
+#endif // DUNE_XT_LA_SOLVER_ISTL_AMG_HH
diff --git a/dune/xt/la/test/container.hh b/dune/xt/la/test/container.hh
index 82d175828..409cd9120 100644
--- a/dune/xt/la/test/container.hh
+++ b/dune/xt/la/test/container.hh
@@ -7,8 +7,8 @@
 //   Rene Milk       (2014 - 2015)
 //   Tobias Leibner  (2014)
 
-#ifndef DUNE_STUFF_TEST_LA_CONTAINER_HH
-#define DUNE_STUFF_TEST_LA_CONTAINER_HH
+#ifndef DUNE_XT_TEST_LA_CONTAINER_HH
+#define DUNE_XT_TEST_LA_CONTAINER_HH
 
 #include <complex>
 #include <memory>
@@ -140,4 +140,4 @@ public:
     EXPECT_DOUBLE_EQ(0, std::imag(actual));                                                                            \
   }
 
-#endif // DUNE_STUFF_TEST_LA_CONTAINER_HH
+#endif // DUNE_XT_TEST_LA_CONTAINER_HH
-- 
GitLab