I would like to use C++11\'s std::aligned_alloc, but unfortunately it isn\'t available with Microsoft Visual Studio 2013.
std::aligned_alloc
I\'m considering, intsead, im
In Windows it's _aligned_malloc and _aligned_free, which can be found in malloc.h. The std implementation (of alignof/alignas) is in VS 2015. It's not available in 2013.