Skip to content
Snippets Groups Projects
Commit ad982f26 authored by Ned Coltman's avatar Ned Coltman Committed by Timo Koch
Browse files

Merge branch 'cleanup/remove-cubetopo-deprecation-warning' into 'master'

[cleanup][boxdfm] Remove CubeTopology deprecation warning

See merge request !2645

(cherry picked from commit ef3d80e9)

cc473d36 [cleanup][boxdfm] Remove CubeTopology deprecation warning
parent 6ce52a9d
No related branches found
No related tags found
1 merge request!2646Merge branch 'cleanup/remove-cubetopo-deprecation-warning' into 'master'
Pipeline #4444 passed
Pipeline: dumux-lecture

#4448

    Pipeline: dumux

    #4447

      Pipeline: dumux

      #4446

        +1
        ......@@ -26,6 +26,7 @@
        #define DUMUX_POROUSMEDIUMFLOW_BOXDFM_SUBCONTROLVOLUME_HH
        #include <dune/common/reservedvector.hh>
        #include <dune/geometry/type.hh>
        #include <dune/geometry/multilineargeometry.hh>
        #include <dumux/discretization/subcontrolvolumebase.hh>
        ......@@ -69,7 +70,7 @@ struct BoxDfmDefaultScvGeometryTraits
        struct hasSingleGeometryType
        {
        static const bool v = true;
        static const unsigned int topologyId = Dune::Impl::CubeTopology< mydim >::type::id;
        static const unsigned int topologyId = Dune::GeometryTypes::cube(mydim).id();
        };
        };
        ......
        ......@@ -72,7 +72,7 @@ struct BoxDfmDefaultScvfGeometryTraits
        struct hasSingleGeometryType
        {
        static const bool v = true;
        static const unsigned int topologyId = Dune::Impl::CubeTopology< mydim >::type::id;
        static const unsigned int topologyId = Dune::GeometryTypes::cube(mydim).id();
        };
        };
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment