From 915972ff446f29d587373b9c858fd8ad811b4216 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 25 Jun 2003 08:29:44 -0400 Subject: ERR: Fixed conversion warning. --- Source/kwsys/Directory.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/Directory.cxx b/Source/kwsys/Directory.cxx index 5198ef8..d8a0b8e 100644 --- a/Source/kwsys/Directory.cxx +++ b/Source/kwsys/Directory.cxx @@ -48,7 +48,7 @@ Directory::~Directory() //---------------------------------------------------------------------------- unsigned long Directory::GetNumberOfFiles() { - return this->Internal->Files.size(); + return static_cast(this->Internal->Files.size()); } //---------------------------------------------------------------------------- -- cgit v0.12