diff options
Diffstat (limited to 'Source/cmDirectory.h')
-rw-r--r-- | Source/cmDirectory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDirectory.h b/Source/cmDirectory.h index 9cc9b27..ec8a9b7 100644 --- a/Source/cmDirectory.h +++ b/Source/cmDirectory.h @@ -42,7 +42,7 @@ public: /** * Return the number of files in the current directory. */ - int GetNumberOfFiles() { return m_Files.size();} + std::vector<std::string>::size_type GetNumberOfFiles() { return m_Files.size();} /** * Return the file at the given index, the indexing is 0 based |