Skip to content

Commit 35a8d82

Browse files
committed
Clarify namespace name after moving to initializer.cpp
1 parent 2f186c9 commit 35a8d82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/test/Analysis/initializer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ void nested_aggregates() {
445445
}
446446
} // namespace newexpr_init_list_initialization
447447

448-
namespace initializer_list_arg {
448+
namespace placement_new_initializer_list_arg {
449449
struct S {
450450
int x;
451451
};
@@ -470,7 +470,7 @@ void initialize_non_zeroth_argument_pointers(S *arr[2]) {
470470
arr[1] = new (arr[1]) S{1};
471471
clang_analyzer_eval(1 == arr[1]->x); // expected-warning{{TRUE}}
472472
}
473-
} // namespace initializer_list_arg
473+
} // namespace placement_new_initializer_list_arg
474474

475475
namespace CXX17_transparent_init_list_exprs {
476476
class A {};

0 commit comments

Comments
 (0)