vector.hpp 226 B

12345678910111213141516
  1. #ifndef ENTT_STL_VECTOR_HPP
  2. #define ENTT_STL_VECTOR_HPP
  3. #include "../config/config.h"
  4. #include <vector>
  5. /*! @cond ENTT_INTERNAL */
  6. namespace entt::stl {
  7. using std::vector;
  8. } // namespace entt::stl
  9. /*! @endcond */
  10. #endif