Skip to content

Commit 4b8c996

Browse files
committed
Fix few nits regarding std::initializer_list recognition if it's exported out of a module
- Add a newline before EOF - Improve release notes
1 parent 255c341 commit 4b8c996

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ Bug Fixes to C++ Support
804804
captures at the end of a full expression. (#GH115931)
805805
- Clang no longer rejects deleting a pointer of incomplete enumeration type. (#GH99278)
806806
- Fixed recognition of ``std::initializer_list`` when it's surrounded with ``extern "C++"`` and exported
807-
out of a module. (#GH118218)
807+
out of a module (which is the case e.g. in MSVC's implementation of ``std`` module). (#GH118218)
808808

809809
Bug Fixes to AST Handling
810810
^^^^^^^^^^^^^^^^^^^^^^^^^

clang/test/Modules/initializer-list-recognition-through-export-and-linkage-issue-118218.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ import mod;
3636
int main() {
3737
A{}.func({1,1});
3838
return 0;
39-
}
39+
}

0 commit comments

Comments
 (0)