From 785b244592c8d4f6d60c18f7d80d4453bd3f14e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C5=BEenan=20Zuki=C4=87?= Date: Fri, 29 Mar 2019 10:55:28 -0400 Subject: [PATCH] ENH: ModifiedTimeType uses 64 bits on Windows - it was 32 before --- Modules/Core/Common/include/itkIntTypes.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Modules/Core/Common/include/itkIntTypes.h b/Modules/Core/Common/include/itkIntTypes.h index 1dda87bffdd..5f4b665516f 100644 --- a/Modules/Core/Common/include/itkIntTypes.h +++ b/Modules/Core/Common/include/itkIntTypes.h @@ -98,10 +98,8 @@ using OffsetValueType = signed long; /** Type to count and reference number of threads */ using ThreadIdType = unsigned int; -/** Type to count and reference the modification time of objects. - * May in the future be replaced by SizeValueType to avoid overflows. - */ -using ModifiedTimeType = unsigned long; +/** Type to count and reference the modification time of objects */ +using ModifiedTimeType = SizeValueType; }