Go to the documentation of this file.
9 #ifndef EAGINE_ANYTHING_HPP
10 #define EAGINE_ANYTHING_HPP
18 constexpr
anything() noexcept =
default;
35 template <
typename Unused>
41 #endif // EAGINE_ANYTHING_HPP
Common code is placed in this namespace.
Definition: eagine.hpp:21
constexpr anything() noexcept=default
Default constructor.
constexpr anything(const Unused &) noexcept
Construction from any other type.
Definition: anything.hpp:36
auto operator=(anything &&) noexcept -> anything &=default
Move assignment operator.
Type that can by constructed from single argument of any other type.
Definition: anything.hpp:16