EnTT 4.0.0
Loading...
Searching...
No Matches
atomic.hpp
1#ifndef ENTT_STL_ATOMIC_HPP
2#define ENTT_STL_ATOMIC_HPP
3
5#if __has_include(<entt/ext/stl/atomic.hpp>)
6# include <entt/ext/stl/atomic.hpp>
7#else
8# include <atomic>
9
10namespace entt::stl {
11
12using std::atomic;
13
14} // namespace entt::stl
15#endif
17
18#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5