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

Remove deprecated memory.hh

parent bbc620a3
Branches
Tags
1 merge request!785Feature/adjust c++ checks
......@@ -21,6 +21,9 @@
## Deprecations and removals
- Remove deprecated header `dune/common/std/memory.hh`; use `<memory>`
instead.
- Deprecate header `dune/common/std/utility.hh`; use `<utility>` instead.
# Release 2.7
......
......@@ -3,7 +3,6 @@ install(
apply.hh
functional.hh
make_array.hh
memory.hh
optional.hh
type_traits.hh
utility.hh
......
// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set ts=8 sw=2 et sts=2:
#ifndef DUNE_COMMON_STD_MEMORY_HH
#define DUNE_COMMON_STD_MEMORY_HH
#warning dune/common/std/memory.hh is deprecated; use std::make_unique from <memory> instead
#include <memory>
namespace Dune
{
namespace Std
{
using std::make_unique;
} // namespace Std
} // namespace Dune
#endif // #ifndef DUNE_COMMON_STD_MEMORY_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment