Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-localfunctions
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-localfunctions
Merge requests
!2
FS#1512 Replace type traits by their standard versions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
FS#1512 Replace type traits by their standard versions
felix.gruber/dune-localfunctions:type_traits
into
master
Overview
0
Commits
6
Pipelines
0
Changes
Merged
Felix Gruber
requested to merge
felix.gruber/dune-localfunctions:type_traits
into
master
9 years ago
Overview
0
Commits
6
Pipelines
0
Changes
-
Expand
See
dune-common!27 (closed)
for more information.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
3e428657
6 commits,
9 years ago
+
27
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
Search (e.g. *.vue) (Ctrl+P)
dune/localfunctions/common/interfaceswitch.hh
+
3
−
3
Options
@@ -82,7 +82,7 @@ namespace Dune {
template<class FiniteElement>
struct FiniteElementInterfaceSwitch<
FiniteElement,
typename enable_if<Std::to_true_type<typename FiniteElement::Traits::
typename
std::
enable_if<Std::to_true_type<typename FiniteElement::Traits::
LocalBasisType>::value>::type
>
{
@@ -173,9 +173,9 @@ namespace Dune {
//! Switch for uniform treatment of local and global basis classes
template<class Basis>
struct BasisInterfaceSwitch<Basis,
typename enable_if<
typename
std::
enable_if<
Std::to_true_type<
integral_constant<
std::
integral_constant<
std::size_t,
Basis::Traits::dimDomain
>
Loading