From e11878e80fd641320828b97a3abeb04774e16999 Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@uni-muenster.de>
Date: Thu, 1 Sep 2016 10:22:36 +0200
Subject: [PATCH] [type_traits] remove trailing ; to be consistent with
 documentation and fix warnings about double ;; in gdt

---
 dune/xt/common/type_traits.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/xt/common/type_traits.hh b/dune/xt/common/type_traits.hh
index a6973a1d3..e0f7ad798 100644
--- a/dune/xt/common/type_traits.hh
+++ b/dune/xt/common/type_traits.hh
@@ -224,7 +224,7 @@ struct is_complex<std::complex<T>> : public std::true_type
     };                                                                                                                 \
                                                                                                                        \
     static const bool value = helper<T_local>::value;                                                                  \
-  };
+  }
 
 /**
   * \brief Macro to statically check a type for a typedef.
@@ -258,7 +258,7 @@ DXTC_has_typedef(Bar)< Foo >::value
     static std::false_type helper(...);                                                                                \
                                                                                                                        \
     static const bool value = decltype(helper<T_local>(0))::value;                                                     \
-  };
+  }
 
 /**
   * \brief Macro to statically check a class or struct for a static member.
-- 
GitLab