mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
6451750890
Use the same function to load and save to have single place with field order definition. Use concepts for overload over different types.
14 lines
283 B
C++
14 lines
283 B
C++
#ifndef OPENMW_COMPONENTS_MISC_CONCEPTS_H
|
|
#define OPENMW_COMPONENTS_MISC_CONCEPTS_H
|
|
|
|
#include <concepts>
|
|
#include <type_traits>
|
|
|
|
namespace Misc
|
|
{
|
|
template <class T, class U>
|
|
concept SameAsWithoutCvref = std::same_as<std::remove_cvref_t<T>, std::remove_cvref_t<U>>;
|
|
}
|
|
|
|
#endif
|