Loading [MathJax]/extensions/tex2jax.js
Radium Engine  1.5.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
AlignedStdVector.hpp
1 #pragma once
2 #include <Core/RaCore.hpp>
3 
4 #include <Eigen/StdVector>
5 #include <vector>
6 
7 namespace Ra {
8 namespace Core {
9 
13 template <typename T>
14 using AlignedStdVector = std::vector<T, Eigen::aligned_allocator<T>>;
15 } // namespace Core
16 } // namespace Ra
Definition: Cage.cpp:3