Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jun 21, 2024
1 parent 7bd61cc commit b32847c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CARET_analyze_cpp_impl/src/records_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ std::map<std::tuple<uint64_t>, std::unique_ptr<RecordsBase>> RecordsBase::groupb
record.get_with_default(column0, UINT64_MAX)
);
if (map.count(key) == 0) {
// cppcheck-suppress stlFindInsert
// cppcheck-suppress stlFindInsert
map[key] = std::make_unique<RecordsVectorImpl>(get_columns());
}
auto & records = map[key];
Expand All @@ -915,7 +915,7 @@ std::map<std::tuple<uint64_t, uint64_t>, std::unique_ptr<RecordsBase>> RecordsBa
record.get_with_default(column1, UINT64_MAX)
);
if (map.count(key) == 0) {
// cppcheck-suppress stlFindInsert
// cppcheck-suppress stlFindInsert
map[key] = std::make_unique<RecordsVectorImpl>(get_columns());
}
auto & records = map[key];
Expand All @@ -939,7 +939,7 @@ std::map<std::tuple<uint64_t, uint64_t, uint64_t>,
record.get_with_default(column2, UINT64_MAX)
);
if (map.count(key) == 0) {
// cppcheck-suppress stlFindInsert
// cppcheck-suppress stlFindInsert
map[key] = std::make_unique<RecordsVectorImpl>(get_columns());
}
auto & records = map[key];
Expand Down

0 comments on commit b32847c

Please sign in to comment.