File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -308,8 +308,6 @@ Bug Fixes in This Version
308
308
- Builtin elementwise operators now accept vector arguments that have different
309
309
qualifiers on their elements. For example, vector of 4 ``const float `` values
310
310
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).
313
311
314
312
Bug Fixes to Compiler Builtins
315
313
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -326,6 +324,8 @@ Bug Fixes to Attribute Support
326
324
is skipped, such as error recovery and code completion. (#GH153551)
327
325
- Using ``[[gnu::cleanup(some_func)]] `` where some_func is annotated with
328
326
``[[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).
329
329
330
330
Bug Fixes to C++ Support
331
331
^^^^^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 1
1
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++03 %s
2
+ // expected-no-diagnostics
2
3
3
4
struct S {
4
5
S ([[clang::lifetimebound]] int &) {}
5
- };
6
+ };
You can’t perform that action at this time.
0 commit comments