Skip to content
Snippets Groups Projects
Commit f4a59c3c authored by Brad King's avatar Brad King
Browse files

ERR: Fixed conversion warning.

parent 56f958a0
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ Directory::~Directory()
//----------------------------------------------------------------------------
unsigned long Directory::GetNumberOfFiles()
{
return this->Internal->Files.size();
return static_cast<unsigned long>(this->Internal->Files.size());
}
//----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment