Skip to content

Commit c1090a5

Browse files
committed
Add a release notes
1 parent 1602c08 commit c1090a5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ C/C++ Language Potentially Breaking Changes
4343
C++ Specific Potentially Breaking Changes
4444
-----------------------------------------
4545

46+
- The type trait builtin ``__is_nullptr`` has been removed, since it has very
47+
few users and can be written as ``__is_same(__remove_cv(T), decltype(nullptr))``,
48+
which GCC supports as well.
49+
4650
ABI Changes in This Version
4751
---------------------------
4852

clang/lib/Parse/ParseDeclCXX.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, DeclaratorContext Context) {
449449
///
450450
/// export-function-declaration:
451451
/// 'export' function-declaration
452-
///
452+
///
453453
/// export-declaration-group:
454454
/// 'export' '{' function-declaration-seq[opt] '}'
455455
///

0 commit comments

Comments
 (0)