Skip to content
Snippets Groups Projects
Commit 88bfc2d7 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[localfunctions.codim0] move traits to internal namespace

parent 230824be
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,14 @@ namespace GDT {
namespace LocalFunctional {
// forward, to be used in the traits
// forward
template <class UnaryEvaluationImp>
class Codim0Integral;
namespace internal {
template <class UnaryEvaluationImp>
class Codim0IntegralTraits
{
......@@ -44,8 +47,11 @@ public:
};
} // namespace internal
template <class UnaryEvaluationImp>
class Codim0Integral : public LocalFunctional::Codim0Interface<Codim0IntegralTraits<UnaryEvaluationImp>>
class Codim0Integral : public LocalFunctional::Codim0Interface<internal::Codim0IntegralTraits<UnaryEvaluationImp>>
{
public:
typedef Codim0IntegralTraits<UnaryEvaluationImp> Traits;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment