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