From 9f240eb5225ffe240b564c936b399264fb89079c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 2 Mar 2015 09:07:35 -0600 Subject: [PATCH] Indent files that had been forgotten by the indentation script. --- include/deal.II/base/std_cxx11/bind.h | 2 +- include/deal.II/base/std_cxx11/tuple.h | 16 ++++++++-------- include/deal.II/base/std_cxx11/type_traits.h | 16 ++++++++-------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/include/deal.II/base/std_cxx11/bind.h b/include/deal.II/base/std_cxx11/bind.h index 7252b356d2..fc64ac1ece 100644 --- a/include/deal.II/base/std_cxx11/bind.h +++ b/include/deal.II/base/std_cxx11/bind.h @@ -49,7 +49,7 @@ namespace std_cxx11 using boost::ref; using boost::cref; using boost::reference_wrapper; - + // now also import the _1, _2 placeholders from the global namespace // into the current one as suggested above using ::_1; diff --git a/include/deal.II/base/std_cxx11/tuple.h b/include/deal.II/base/std_cxx11/tuple.h index 7319b06fb7..2851703c7d 100644 --- a/include/deal.II/base/std_cxx11/tuple.h +++ b/include/deal.II/base/std_cxx11/tuple.h @@ -43,21 +43,21 @@ namespace std_cxx11 using boost::make_tuple; using boost::get; - // boost::tuples::length has been renamed - // by the standard to std::tuple_size + // boost::tuples::length has been renamed + // by the standard to std::tuple_size template - struct tuple_size + struct tuple_size { - static const std::size_t value = boost::tuples::length::value; + static const std::size_t value = boost::tuples::length::value; }; - // similarly, boost::tuples::element has - // been renamed by the standard to - // std::tuple_element + // similarly, boost::tuples::element has + // been renamed by the standard to + // std::tuple_element template struct tuple_element { - typedef typename boost::tuples::element::type type; + typedef typename boost::tuples::element::type type; }; } DEAL_II_NAMESPACE_CLOSE diff --git a/include/deal.II/base/std_cxx11/type_traits.h b/include/deal.II/base/std_cxx11/type_traits.h index 290dc02bd8..e35ac4b2f8 100644 --- a/include/deal.II/base/std_cxx11/type_traits.h +++ b/include/deal.II/base/std_cxx11/type_traits.h @@ -25,8 +25,8 @@ DEAL_II_NAMESPACE_OPEN namespace std_cxx11 { - // TODO: could fill up with more types from - // C++11 type traits + // TODO: could fill up with more types from + // C++11 type traits using std::is_pod; using std::is_standard_layout; using std::is_trivial; @@ -41,9 +41,9 @@ namespace std_cxx11 { using boost::is_pod; - // boost does not have is_standard_layout and - // is_trivial, but those are both a subset of - // is_pod + // boost does not have is_standard_layout and + // is_trivial, but those are both a subset of + // is_pod template struct is_standard_layout { @@ -54,9 +54,9 @@ namespace std_cxx11 struct is_trivial { static const bool value = boost::has_trivial_copy::value && - boost::has_trivial_assign::value && - boost::has_trivial_constructor::value && - boost::has_trivial_destructor::value; + boost::has_trivial_assign::value && + boost::has_trivial_constructor::value && + boost::has_trivial_destructor::value; }; } DEAL_II_NAMESPACE_CLOSE -- 2.39.5