Skip to content

Commit 7fefe94

Browse files
committed
Remove non-test changes for now
1 parent e42e46a commit 7fefe94

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ Potentially Breaking Changes
3636

3737
- The Objective-C ARC migrator (ARCMigrate) has been removed.
3838

39-
- ``-Wreturn-type`` now defaults to an error in all language modes; like other
40-
warnings, it can be reverted to just being a warning by specifying
41-
``-Wno-error=return-type``.
42-
4339
C/C++ Language Potentially Breaking Changes
4440
-------------------------------------------
4541

clang/include/clang/Basic/DiagnosticSemaKinds.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def warn_falloff_nonvoid : Warning<
717717
"non-void "
718718
"%enum_select<FalloffFunctionKind>{%Function{function}|%Block{block}|%Lambda{lambda}|%Coroutine{coroutine}}0"
719719
" does not return a value%select{| in all control paths}1">,
720-
InGroup<ReturnType>, DefaultError;
720+
InGroup<ReturnType>;
721721
def err_falloff_nonvoid : Error<
722722
"non-void %select{function|block|lambda|coroutine}0 "
723723
"does not return a value%select{| in all control paths}1">;

0 commit comments

Comments
 (0)