aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Memory.h
diff options
context:
space:
mode:
authorGravatar Angelos Mantzaflaris <Angelos.Mantzaflaris@oeaw.ac.at>2016-12-01 21:25:58 +0100
committerGravatar Angelos Mantzaflaris <Angelos.Mantzaflaris@oeaw.ac.at>2016-12-01 21:25:58 +0100
commit8c24723a09cd6b3852d2a5a0748f6a250d1d40f5 (patch)
treec522f950c64c6461d4d1176c967a661f77b48fe2 /Eigen/src/Core/util/Memory.h
parentaeba0d865543634c9b3fe176cfe055268b305da5 (diff)
typo UIntPtr
Diffstat (limited to 'Eigen/src/Core/util/Memory.h')
-rw-r--r--Eigen/src/Core/util/Memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Memory.h b/Eigen/src/Core/util/Memory.h
index 741f35a0d..67053db62 100644
--- a/Eigen/src/Core/util/Memory.h
+++ b/Eigen/src/Core/util/Memory.h
@@ -523,7 +523,7 @@ template<typename T> struct smart_memmove_helper<T,true> {
template<typename T> struct smart_memmove_helper<T,false> {
static inline void run(const T* start, const T* end, T* target)
{
- if (IntPtr(target) < IntPtr(start))
+ if (UIntPtr(target) < UIntPtr(start))
{
std::copy(start, end, target);
}