Silly macro removed-3

This commit is contained in:
Nekotekina 2016-08-15 18:30:33 +03:00
parent dbcb5df172
commit 3c82e1a58d
7 changed files with 44 additions and 46 deletions

View file

@ -868,6 +868,16 @@ public:
}
};
enum class not_an_error_t : s32
{
};
template <typename T>
FORCE_INLINE not_an_error_t not_an_error(const T& value)
{
return static_cast<not_an_error_t>(static_cast<s32>(value));
}
template <typename T, typename ID>
struct fmt_unveil<id_value<T, ID>>
{