ERR: Fixed conversion warning.
This commit is contained in:
parent
78ecb7f33f
commit
915972ff44
|
@ -48,7 +48,7 @@ Directory::~Directory()
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
unsigned long Directory::GetNumberOfFiles()
|
unsigned long Directory::GetNumberOfFiles()
|
||||||
{
|
{
|
||||||
return this->Internal->Files.size();
|
return static_cast<unsigned long>(this->Internal->Files.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue