Skip to content
Snippets Groups Projects
Commit 5e5c60c6 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup] Remove non-necessary namespace qualifiers

parent cc038f05
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,7 @@ namespace Imp { ...@@ -82,7 +82,7 @@ namespace Imp {
template<class T> template<class T>
constexpr auto size(const T& t) constexpr auto size(const T& t)
{ {
return Hybrid::Imp::size(&t, PriorityTag<42>()); return Imp::size(&t, PriorityTag<42>());
} }
...@@ -133,7 +133,7 @@ namespace Imp { ...@@ -133,7 +133,7 @@ namespace Imp {
template<class Container, class Index> template<class Container, class Index>
constexpr decltype(auto) elementAt(Container&& c, Index&& i) constexpr decltype(auto) elementAt(Container&& c, Index&& i)
{ {
return Hybrid::Imp::elementAt(std::forward<Container>(c), std::forward<Index>(i), PriorityTag<42>()); return Imp::elementAt(std::forward<Container>(c), std::forward<Index>(i), PriorityTag<42>());
} }
...@@ -222,7 +222,7 @@ namespace Imp { ...@@ -222,7 +222,7 @@ namespace Imp {
template<class Begin, class End> template<class Begin, class End>
constexpr auto integralRange(const Begin& begin, const End& end) constexpr auto integralRange(const Begin& begin, const End& end)
{ {
return Hybrid::Imp::integralRange(begin, end, PriorityTag<42>()); return Imp::integralRange(begin, end, PriorityTag<42>());
} }
/** /**
...@@ -239,7 +239,7 @@ constexpr auto integralRange(const Begin& begin, const End& end) ...@@ -239,7 +239,7 @@ constexpr auto integralRange(const Begin& begin, const End& end)
template<class End> template<class End>
constexpr auto integralRange(const End& end) constexpr auto integralRange(const End& end)
{ {
return Hybrid::Imp::integralRange(Dune::Indices::_0, end, PriorityTag<42>()); return Imp::integralRange(Dune::Indices::_0, end, PriorityTag<42>());
} }
...@@ -294,7 +294,7 @@ namespace Imp { ...@@ -294,7 +294,7 @@ namespace Imp {
template<class Range, class F> template<class Range, class F>
constexpr void forEach(Range&& range, F&& f) constexpr void forEach(Range&& range, F&& f)
{ {
Hybrid::Imp::forEach(std::forward<Range>(range), std::forward<F>(f), PriorityTag<42>()); Imp::forEach(std::forward<Range>(range), std::forward<F>(f), PriorityTag<42>());
} }
...@@ -389,7 +389,7 @@ namespace Imp { ...@@ -389,7 +389,7 @@ namespace Imp {
template<class T1, class T2> template<class T1, class T2>
constexpr auto equals(T1&& t1, T2&& t2) constexpr auto equals(T1&& t1, T2&& t2)
{ {
return Hybrid::Imp::equals(std::forward<T1>(t1), std::forward<T2>(t2), PriorityTag<1>()); return Imp::equals(std::forward<T1>(t1), std::forward<T2>(t2), PriorityTag<1>());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment