Skip to content
Snippets Groups Projects
Commit 95b9dc00 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Use std::void_t instead of Dune::void_t

parent b7f4a70e
No related branches found
No related tags found
No related merge requests found
#ifndef DUNE_ISTL_ALLOCATOR_HH
#define DUNE_ISTL_ALLOCATOR_HH
#include <dune/common/typetraits.hh>
#include <memory>
#include <type_traits>
#include <dune/common/typetraits.hh>
namespace Dune {
......@@ -18,7 +20,7 @@ namespace Dune {
};
template<typename T>
struct DefaultAllocatorTraits<T, void_t<typename T::allocator_type> >
struct DefaultAllocatorTraits<T, std::void_t<typename T::allocator_type> >
{
using type = typename T::allocator_type;
};
......
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