diff options
Diffstat (limited to 'clang/test/Analysis')
-rw-r--r-- | clang/test/Analysis/const-method-call.cpp | 2 | ||||
-rw-r--r-- | clang/test/Analysis/structured_bindings.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Analysis/const-method-call.cpp b/clang/test/Analysis/const-method-call.cpp index 902bdee2772..8e1fd3b125f 100644 --- a/clang/test/Analysis/const-method-call.cpp +++ b/clang/test/Analysis/const-method-call.cpp @@ -235,7 +235,7 @@ public: void constMemberFunction() const; }; -HasConstMemberFunction hasNoReturn() { } // expected-warning {{control reaches end of non-void function}} +HasConstMemberFunction hasNoReturn() { } // expected-warning {{non-void function does not return a value}} void testUnknownWithConstMemberFunction() { hasNoReturn().constMemberFunction(); diff --git a/clang/test/Analysis/structured_bindings.cpp b/clang/test/Analysis/structured_bindings.cpp index fcc976c4c3d..3e8ff1c2aa6 100644 --- a/clang/test/Analysis/structured_bindings.cpp +++ b/clang/test/Analysis/structured_bindings.cpp @@ -5,5 +5,5 @@ int foo() { auto[a] = s{1}; // FIXME: proper modelling if (a) { } -} // expected-warning{{control reaches end of non-void function}} +} // expected-warning{{non-void function does not return a value}} |