add missing inline keyword, thanks to Eamon.

This commit is contained in:
Benoit Jacob 2010-02-27 17:51:48 -05:00
parent e0830cb1b7
commit 22fabb8940

View File

@ -97,7 +97,7 @@ inline void* ei_handmade_aligned_realloc(void* ptr, size_t size)
}
#if EIGEN_HAS_MM_MALLOC
void* ei_mm_realloc(void *ptr, size_t size, size_t old_size)
inline void* ei_mm_realloc(void *ptr, size_t size, size_t old_size)
{
// 0. Check if size==0 and act according to the standard.
if (ptr!=0 && size==0)