Skip to content

[clang] Update cxx_dr_status.html #77372

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clang/test/CXX/drs/dr24xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void fallthrough(int n) {
#endif
}

namespace dr2450 { // dr2450: 18 drafting
namespace dr2450 { // dr2450: 18 review
#if __cplusplus >= 202302L
struct S {int a;};
template <S s>
Expand Down
4 changes: 2 additions & 2 deletions clang/test/CXX/drs/dr25xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ using ::dr2521::operator""_div;


#if __cplusplus >= 202302L
namespace dr2553 { // dr2553: 18
namespace dr2553 { // dr2553: 18 review
struct B {
virtual void f(this B&);
// since-cxx23-error@-1 {{an explicit object parameter cannot appear in a virtual function}}
Expand Down Expand Up @@ -143,7 +143,7 @@ void foo() {
#endif


namespace dr2565 { // dr2565: 16
namespace dr2565 { // dr2565: 16 open
#if __cplusplus >= 202002L
template<typename T>
concept C = requires (typename T::type x) {
Expand Down
4 changes: 2 additions & 2 deletions clang/test/CXX/drs/dr26xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using enum E;
#endif
}

namespace dr2628 { // dr2628: no open
namespace dr2628 { // dr2628: no
// this was reverted for the 16.x release
// due to regressions, see the issue for more details:
// https://github.com/llvm/llvm-project/issues/60777
Expand Down Expand Up @@ -197,7 +197,7 @@ J j = { "ghi" };
#endif
}

namespace dr2672 { // dr2672: 18 open
namespace dr2672 { // dr2672: 18
#if __cplusplus >= 202002L
template <class T>
void f(T) requires requires { []() { T::invalid; } (); };
Expand Down
4 changes: 2 additions & 2 deletions clang/test/CXX/drs/dr27xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// expected-no-diagnostics
#endif

namespace dr2789 { // dr2789: 18 open
namespace dr2789 { // dr2789: 18
#if __cplusplus >= 202302L
template <typename T = int>
struct Base {
Expand Down Expand Up @@ -42,7 +42,7 @@ void test() {
#endif
}

namespace dr2798 { // dr2798: 17 drafting
namespace dr2798 { // dr2798: 17
#if __cpp_static_assert >= 202306
struct string {
constexpr string() {
Expand Down
Loading