Skip to content

Commit e476ed1

Browse files
committed
#2487: cxx20: final link fix
1 parent 3588976 commit e476ed1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/unit/runtime/test_initialization.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,9 +546,8 @@ void prepareLBDataFiles(const std::string file_name_without_ext) {
546546
for (PhaseType i = 0; i < num_phases; i++) {
547547
for (auto&& elm : ids[i]) {
548548
dh.node_data_[i][elm] = LoadSummary{3};
549-
std::vector<uint64_t> arr = {1};
550549
VirtualProxyType proxy = 7;
551-
dh.node_idx_[elm] = std::make_tuple(proxy, arr);
550+
dh.node_idx_[elm] = std::make_tuple(proxy, std::vector<uint64_t>{1});
552551
}
553552
}
554553

0 commit comments

Comments
 (0)