diff options
Diffstat (limited to 'lldb/source/Core/FileSpecList.cpp')
-rw-r--r-- | lldb/source/Core/FileSpecList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/FileSpecList.cpp b/lldb/source/Core/FileSpecList.cpp index 6887eebe94a..56e64555136 100644 --- a/lldb/source/Core/FileSpecList.cpp +++ b/lldb/source/Core/FileSpecList.cpp @@ -125,7 +125,7 @@ FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool f } // We didn't find the file, return an invalid index - return std::numeric_limits<uint32_t>::max(); + return UINT32_MAX; } //------------------------------------------------------------------ |