include/meltpooldg/utilities/preprocessor_directives.hpp Source File

Developer Documentation: include/meltpooldg/utilities/preprocessor_directives.hpp Source File
Developer Documentation
preprocessor_directives.hpp
Go to the documentation of this file.
1
5#pragma once
6
7#include <utility>
8
13#define MPDG_LAMBDA_WRAPPER(func) \
14 [&](auto &&...args) -> decltype(auto) { return func(std::forward<decltype(args)>(args)...); }