Skip to content

Commit 4914455

Browse files
committed
fix test
1 parent 3919258 commit 4914455

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,6 @@ Bug Fixes in This Version
308308
- Builtin elementwise operators now accept vector arguments that have different
309309
qualifiers on their elements. For example, vector of 4 ``const float`` values
310310
and vector of 4 ``float`` values. (#GH155405)
311-
- Stop rejecting C++11-style attributes on the first argument of constructors in older
312-
standards. (#GH156809).
313311

314312
Bug Fixes to Compiler Builtins
315313
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -326,6 +324,8 @@ Bug Fixes to Attribute Support
326324
is skipped, such as error recovery and code completion. (#GH153551)
327325
- Using ``[[gnu::cleanup(some_func)]]`` where some_func is annotated with
328326
``[[gnu::error("some error")]]`` now correctly triggers an error. (#GH146520)
327+
- Stop rejecting C++11-style attributes on the first argument of constructors in older
328+
standards. (#GH156809).
329329

330330
Bug Fixes to C++ Support
331331
^^^^^^^^^^^^^^^^^^^^^^^^
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++03 %s
2+
// expected-no-diagnostics
23

34
struct S {
45
S([[clang::lifetimebound]] int&) {}
5-
};
6+
};

0 commit comments

Comments
 (0)