Collision Checker
declarations.h
Go to the documentation of this file.
1 
2 #ifndef CPP_COLLISION_INCLUDE_COLLISION_ACCELERATORS_DECLARATIONS_H_
3 #define CPP_COLLISION_INCLUDE_COLLISION_ACCELERATORS_DECLARATIONS_H_
4 
5 #include <boost/align/aligned_allocator.hpp>
6 namespace collision {
7 template <typename T>
8 using aligned_vector =
9  std::vector<T, boost::alignment::aligned_allocator<T, 16>>;
10 }
11 
12 #endif /* CPP_COLLISION_INCLUDE_COLLISION_ACCELERATORS_DECLARATIONS_H_ */
std::vector< T, boost::alignment::aligned_allocator< T, 16 > > aligned_vector