Skip to content

Commit 96ef4a1

Browse files
committed
Fix clang-format issue.
1 parent a2f7b3c commit 96ef4a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/benchmarks/containers/associative/hash_table_find.bench.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void BM_UnorderedSet_Find_EmptySet(benchmark::State& state, Gen g) {
5050
template <class Gen>
5151
static void BM_UnorderedSet_Find(benchmark::State& state, Gen g) {
5252
const size_t lookup_count = state.range(0);
53-
std::unordered_set<std::string> s{"hello"}; // Non-empty set
53+
std::unordered_set<std::string> s{"hello"}; // Non-empty set
5454

5555
for (auto _ : state) {
5656
for (size_t i = 0; i < lookup_count; i++) {

0 commit comments

Comments
 (0)