1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 #ifndef DUNE_COMMON_STD_APPLY_HH
4 #define DUNE_COMMON_STD_APPLY_HH
5 
6 #include <tuple>
7 
8 namespace Dune
9 {
10   namespace Std
11   {
12 
13     /// Invoke the Callable object f with a tuple of arguments.
14     /// \deprecated Use `std::apply` directly.
15     using std::apply;
16 
17   } // namespace Std
18 } // namespace Dune
19 
20 #endif // #ifndef DUNE_COMMON_STD_APPLY_HH
21