Skip to content
Snippets Groups Projects
Commit 463250d2 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

Merge branch 'aligned-number-aint-simd-isstandard' into 'master'

[Simd::IsStandard] Disable for AlignedNumber too.

See merge request !510
parents 0daf88cd 069d2549
Branches
Tags
1 merge request!510[Simd::IsStandard] Disable for AlignedNumber too.
Pipeline #
......@@ -19,6 +19,7 @@
#include <dune/common/indices.hh>
#include <dune/common/simd/base.hh>
#include <dune/common/simd/defaults.hh>
#include <dune/common/simd/isstandard.hh>
#include <dune/common/typetraits.hh>
namespace Dune {
......@@ -481,6 +482,12 @@ namespace Dune {
}
} // namespace Overloads
// temporary stop-gap measure to get IsStandard out of the way
// see https://gitlab.dune-project.org/core/dune-common/issues/121#note_44588
template<class T, std::size_t align>
struct IsStandard<AlignedNumber<T, align> > : std::false_type {};
} // namespace Simd
} // namespace Dune
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment