From ac6f432f853a23cf64adfd546407382e449291b0 Mon Sep 17 00:00:00 2001 From: Rene Milk <rene.milk@uni-muenster.de> Date: Tue, 9 Apr 2013 15:59:48 +0200 Subject: [PATCH] [ranges] apparently it's bad form to put begin/end specs into ns std:: http://stackoverflow.com/a/8165154 --- dune/stuff/common/ranges.hh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dune/stuff/common/ranges.hh b/dune/stuff/common/ranges.hh index 9752a41c4..262ff1882 100644 --- a/dune/stuff/common/ranges.hh +++ b/dune/stuff/common/ranges.hh @@ -21,10 +21,10 @@ #endif #include <dune/stuff/common/math.hh> -namespace std { - +namespace Dune { #if HAVE_DUNE_FEM +namespace Fem { template <class DiscreteFunctionTraits> auto begin(const Dune::DiscreteFunctionInterface<DiscreteFunctionTraits>& func) -> decltype(func.dbegin()) @@ -50,9 +50,10 @@ auto end(Dune::DiscreteFunctionInterface<DiscreteFunctionTraits>& func) -> declt return func.dend(); } +} // namespace Fem #endif -} // namespace std +} // namespace Dune namespace Dune { namespace Stuff { -- GitLab