From f4a59c3c5f8f2792db4750850ae7da801ef01556 Mon Sep 17 00:00:00 2001 From: Brad King <brad.king@kitware.com> Date: Wed, 25 Jun 2003 08:29:44 -0400 Subject: [PATCH] ERR: Fixed conversion warning. --- Directory.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.cxx b/Directory.cxx index c9ad026..4d89ca4 100644 --- a/Directory.cxx +++ b/Directory.cxx @@ -48,7 +48,7 @@ Directory::~Directory() //---------------------------------------------------------------------------- unsigned long Directory::GetNumberOfFiles() { - return this->Internal->Files.size(); + return static_cast<unsigned long>(this->Internal->Files.size()); } //---------------------------------------------------------------------------- -- GitLab