1#ifndef DUNE_COMMON_STD_OPTIONAL_HH
2#define DUNE_COMMON_STD_OPTIONAL_HH
12#warning dune/common/std/optional.hh is deprecated and will be removed after Dune 2.8.\
13 Include <optional> instead
22 using optional = std::optional< T >;
24 using nullopt_t = std::nullopt_t;
25 using in_place_t = std::in_place_t;
29 const std::nullopt_t nullopt = std::nullopt;
30 const std::in_place_t in_place = std::in_place;
33 using bad_optional_access = std::bad_optional_access;
Dune namespace.
Definition: alignedallocator.hh:11