bug #1468 (1/2) : add missing std:: to memcpy

(grafted from 8579195169
)
This commit is contained in:
Gael Guennebaud
2017-09-22 09:23:24 +02:00
parent 6fc0f2be70
commit 32a6db0f8c
3 changed files with 3 additions and 3 deletions

View File

@@ -493,7 +493,7 @@ template<typename T> struct smart_copy_helper<T,true> {
IntPtr size = IntPtr(end)-IntPtr(start);
if(size==0) return;
eigen_internal_assert(start!=0 && end!=0 && target!=0);
memcpy(target, start, size);
std::memcpy(target, start, size);
}
};