diff options
author | Brad King <brad.king@kitware.com> | 2003-06-25 12:29:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-06-25 12:29:44 (GMT) |
commit | 915972ff446f29d587373b9c858fd8ad811b4216 (patch) | |
tree | aff005185ec7d72229b49571139aec79e08c8a71 /Source/kwsys/Directory.cxx | |
parent | 78ecb7f33fbb991884cbbd9a9e9c7e9b075a0386 (diff) | |
download | CMake-915972ff446f29d587373b9c858fd8ad811b4216.zip CMake-915972ff446f29d587373b9c858fd8ad811b4216.tar.gz CMake-915972ff446f29d587373b9c858fd8ad811b4216.tar.bz2 |
ERR: Fixed conversion warning.
Diffstat (limited to 'Source/kwsys/Directory.cxx')
-rw-r--r-- | Source/kwsys/Directory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<unsigned long>(this->Internal->Files.size()); } //---------------------------------------------------------------------------- |