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
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
314312Bug 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
330330Bug Fixes to C++ Support
331331^^^^^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 11// RUN: %clang_cc1 -fsyntax-only -verify -std=c++03 %s
2+ // expected-no-diagnostics
23
34struct S {
45 S ([[clang::lifetimebound]] int &) {}
5- };
6+ };
You can’t perform that action at this time.
0 commit comments