File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 33#include < string>
44#include < iostream>
55#include < fstream>
6+ #include < chrono>
67#include " log.h"
78
89namespace logger {
@@ -65,7 +66,7 @@ namespace logger {
6566
6667 void logPassedTime () {
6768 if (LEVEL >= DEBUG) {
68- long long passedTime = std::__1:: chrono::duration_cast<std::chrono::milliseconds>(
69+ long long passedTime = std::chrono::duration_cast<std::chrono::milliseconds>(
6970 std::chrono::steady_clock::now () - timePoint
7071 ).count ();
7172 *out << " MEMORY_AGENT::TIME_MS " << passedTime << std::endl;
Original file line number Diff line number Diff line change 11// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
22
33#include < vector>
4+ #include < algorithm>
45
56#include " retained_size_via_dominator_tree.h"
67#include " dominator_tree.h"
You can’t perform that action at this time.
0 commit comments