Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing headers. #5454

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions tiledb/common/heap_profiler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
* This file contains the implementation of the HeapProfiler class.
*/

#include <chrono>
#include <fstream>
#include <iostream>

#include "tiledb/common/heap_profiler.h"

namespace tiledb {
namespace common {
namespace tiledb::common {

HeapProfiler heap_profiler;

Expand Down Expand Up @@ -332,5 +332,4 @@ void HeapProfiler::dump_internal() {
file_stream.close();
}

} // namespace common
} // namespace tiledb
} // namespace tiledb::common
10 changes: 4 additions & 6 deletions tiledb/sm/stats/duration_instrument.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
#ifndef TILEDB_DURATION_INSTRUMENT_H
#define TILEDB_DURATION_INSTRUMENT_H

#include <chrono>

#include "tiledb/common/common.h"

using namespace tiledb::common;

namespace tiledb {
namespace sm {
namespace stats {
namespace tiledb::sm::stats {

class Stats;

Expand Down Expand Up @@ -81,8 +81,6 @@ class DurationInstrument {
std::chrono::high_resolution_clock::time_point start_time_;
};

} // namespace stats
} // namespace sm
} // namespace tiledb
} // namespace tiledb::sm::stats

#endif // TILEDB_DURATION_INSTRUMENT_H
Loading