summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/Timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Utility/Timer.cpp')
-rw-r--r--lldb/source/Utility/Timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Utility/Timer.cpp b/lldb/source/Utility/Timer.cpp
index 170d17a1fc9..c56ac2192b3 100644
--- a/lldb/source/Utility/Timer.cpp
+++ b/lldb/source/Utility/Timer.cpp
@@ -125,7 +125,7 @@ void Timer::DumpCategoryTimes(Stream *s) {
return; // Later code will break without any elements.
// Sort by time
- std::sort(sorted.begin(), sorted.end(), CategoryMapIteratorSortCriterion);
+ llvm::sort(sorted.begin(), sorted.end(), CategoryMapIteratorSortCriterion);
for (const auto &timer : sorted)
s->Printf("%.9f sec for %s\n", timer.second / 1000000000., timer.first);
OpenPOWER on IntegriCloud