@@ -15,10 +15,10 @@
#ifndef ENTT_NO_ATOMIC
#include <atomic>
template<typename Type>
-using maybe_atomic_type = std::atomic<Type>;
+using maybe_atomic_t = std::atomic<Type>;
#else
-using maybe_atomic_type = Type;
+using maybe_atomic_t = Type;
#endif // ENTT_USE_ATOMIC
@@ -19,7 +19,7 @@ namespace entt {
*/
template<typename...>
class family {
- inline static maybe_atomic_type<std::size_t> identifier;
+ inline static maybe_atomic_t<std::size_t> identifier;
inline static const auto inner = identifier++;
@@ -45,7 +45,7 @@ struct monostate {
private:
- inline static maybe_atomic_type<Type> value{};
+ inline static maybe_atomic_t<Type> value{};
};