Skip to content

Commit e0e9f9f

Browse files
remove the second //
1 parent 6258613 commit e0e9f9f

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

libcxx/test/std/containers/associative/map/map.cons/dtor_noexcept.pass.cpp

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

99
// <map>
1010

11-
// ~map() // implied noexcept; // constexpr since C++26
11+
// ~map() // implied noexcept; constexpr since C++26
1212

1313
// UNSUPPORTED: c++03
1414

libcxx/test/std/containers/associative/map/map.cons/from_range.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
1010

1111
// template<container-compatible-range<value_type> R>
12-
// map(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23 // constexpr since C++26
12+
// map(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23, constexpr since C++26
1313
//
1414
// template<container-compatible-range<value_type> R>
1515
// map(from_range_t, R&& rg, const Allocator& a))
16-
// : map(from_range, std::forward<R>(rg), Compare(), a) { } // C++23 // constexpr since C++26
16+
// : map(from_range, std::forward<R>(rg), Compare(), a) { } // C++23, constexpr since C++26
1717

1818
#include <array>
1919
#include <map>

libcxx/test/std/containers/associative/map/map.modifiers/insert_or_assign.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
// class map
1414

1515
// template <class M>
16-
// pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17 // constexpr since C++26
16+
// pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17, constexpr since C++26
1717
// template <class M>
18-
// pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17 // constexpr since C++26
18+
// pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17, constexpr since C++26
1919
// template <class M>
20-
// iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17 // constexpr since C++26
20+
// iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17, constexpr since C++26
2121
// template <class M>
22-
// iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17 // constexpr since C++26
22+
// iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17, constexpr since C++26
2323

2424
#include <map>
2525
#include <cassert>

libcxx/test/std/containers/associative/map/map.modifiers/insert_range.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// <map>
1515

1616
// template<container-compatible-range<value_type> R>
17-
// void insert_range(R&& rg); // C++23 // constexpr since C++26
17+
// void insert_range(R&& rg); // C++23, constexpr since C++26
1818

1919
#include <map>
2020

libcxx/test/std/containers/associative/map/map.modifiers/try.emplace.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
// class map
1414

1515
// template <class... Args>
16-
// pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17 // constexpr since C++26
16+
// pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17, constexpr since C++26
1717
// template <class... Args>
18-
// pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17 // constexpr since C++26
18+
// pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17, constexpr since C++26
1919
// template <class... Args>
20-
// iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17 // constexpr since C++26
20+
// iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17, constexpr since C++26
2121
// template <class... Args>
22-
// iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17 // constexpr since C++26
22+
// iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17, constexpr since C++26
2323

2424
#include <map>
2525
#include <cassert>

libcxx/test/std/containers/associative/map/map.ops/contains_transparent.pass.cpp

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

1414
// <map>
1515

16-
// template<class K> bool contains(const K& x) const; // C++20 // constexpr since C++26
16+
// template<class K> bool contains(const K& x) const; // C++20, constexpr since C++26
1717

1818
#include "test_macros.h"
1919

libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// class map
1414

1515
// template<typename K>
16-
// size_type count(const K& x) const; // C++14 // constexpr since C++26
16+
// size_type count(const K& x) const; // C++14, constexpr since C++26
1717

1818
#include <cassert>
1919
#include <map>

libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
// class map
1414

1515
// template<typename K>
16-
// pair<iterator,iterator> equal_range(const K& x); // C++14 // constexpr since C++26
16+
// pair<iterator,iterator> equal_range(const K& x); // C++14, constexpr since C++26
1717
// template<typename K>
1818
// pair<const_iterator,const_iterator> equal_range(const K& x) const;
19-
// // C++14 // constexpr since C++26
19+
// // C++14, constexpr since C++26
2020

2121
#include <cassert>
2222
#include <map>

0 commit comments

Comments
 (0)