Skip to content

Commit 8bfed5d

Browse files
committed
some more comments
1 parent 2f94a34 commit 8bfed5d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

libcxx/test/std/containers/container.adaptors/flat.set/flat.set.cons/move.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ int main(int, char**) {
182182
test_move_noexcept();
183183
#if !defined(TEST_HAS_NO_EXCEPTIONS)
184184
test_move_exception();
185-
#endif // !defined(TEST_HAS_NO_EXCEPTIONS)
185+
#endif
186186

187187
return 0;
188188
}

libcxx/test/std/containers/container.adaptors/flat.set/flat.set.modifiers/insert_rv.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// class flat_set
1414

15-
// pair<iterator, bool> insert( value_type&& v);
15+
// pair<iterator, bool> insert(value_type&& v);
1616

1717
#include <flat_set>
1818
#include <cassert>

libcxx/test/std/containers/container.adaptors/flat.set/helpers.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef SUPPORT_FLAT_SET_HELPERS_H
10-
#define SUPPORT_FLAT_SET_HELPERS_H
9+
#ifndef TEST_STD_CONTAINERS_CONTAINER_ADAPTORS_FLAT_SET_HELPERS_H
10+
#define TEST_STD_CONTAINERS_CONTAINER_ADAPTORS_FLAT_SET_HELPERS_H
1111

1212
#include <algorithm>
1313
#include <cassert>
@@ -304,4 +304,4 @@ class Moveable {
304304
bool moved() const { return int_ == -1; }
305305
};
306306

307-
#endif // SUPPORT_FLAT_SET_HELPERS_H
307+
#endif // TEST_STD_CONTAINERS_CONTAINER_ADAPTORS_FLAT_SET_HELPERS_H

0 commit comments

Comments
 (0)