Skip to content

Commit 1eb991d

Browse files
committed
drt: clang-tidy
Signed-off-by: Eder Monteiro <[email protected]>
1 parent 8f5c6fb commit 1eb991d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/drt/src/db/obj/frBlock.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <algorithm>
77
#include <map>
88
#include <memory>
9+
#include <set>
910
#include <string>
1011
#include <type_traits>
1112
#include <utility>
@@ -297,7 +298,7 @@ class frBlock : public frBlockObject
297298
std::vector<odb::Point> sol;
298299
for (auto& x : x_indices) {
299300
for (auto& y : y_indices) {
300-
sol.push_back(odb::Point(x, y));
301+
sol.emplace_back(x, y);
301302
}
302303
}
303304
return sol;

src/drt/src/db/obj/frMaster.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include <algorithm>
77
#include <memory>
8+
#include <set>
89
#include <string>
910
#include <utility>
1011
#include <vector>

src/drt/src/pa/FlexPA_row_pattern.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "distributed/frArchive.h"
2020
#include "dst/Distributed.h"
2121
#include "dst/JobMessage.h"
22+
#include "frBaseTypes.h"
2223
#include "frProfileTask.h"
2324
#include "gc/FlexGC.h"
2425
#include "odb/dbTransform.h"

0 commit comments

Comments
 (0)