Bug 1674907 - Clean up C++17 ifdefs in TestNoRefcountedInsideLambdas.cpp r=static-analysis-reviewers,sg

I'll need to update this file for clang-12, and in order to prevent the need for adding more of these ifdefs, let's just assume they are true and remove the checks. Our codebase has been on C++17 for a while now.

Differential Revision: https://phabricator.services.mozilla.com/D95592
This commit is contained in:
David Major 2020-11-03 09:25:50 +00:00
Родитель 6e8527f840
Коммит 5fde4e00e2
1 изменённых файлов: 0 добавлений и 34 удалений

Просмотреть файл

@ -4,9 +4,7 @@
// Ensure that warnings about returning stack addresses of local variables are
// errors, so our `expected-error` annotations below work correctly.
#if __cplusplus >= 201703L
#pragma GCC diagnostic error "-Wreturn-stack-address"
#endif
struct RefCountedBase {
void AddRef();
@ -400,11 +398,7 @@ void e() {
auto e1 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&](R* argptr) { // expected-error{{address of stack memory associated with local variable 'ptr' returned}}
#else
return ([&](R* argptr) {
#endif
R* localptr;
ptr->method();
argptr->method();
@ -414,11 +408,7 @@ void e() {
auto e2 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&](SmartPtr<R> argsp) { // expected-error{{address of stack memory associated with local variable 'sp' returned}}
#else
return ([&](SmartPtr<R> argsp) {
#endif
SmartPtr<R> localsp;
sp->method();
argsp->method();
@ -428,11 +418,7 @@ void e() {
auto e3 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&](R* argptr) { // expected-error{{address of stack memory associated with local variable 'ptr' returned}}
#else
return ([&](R* argptr) {
#endif
R* localptr;
take(ptr);
take(argptr);
@ -442,11 +428,7 @@ void e() {
auto e4 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&](SmartPtr<R> argsp) { // expected-error{{address of stack memory associated with local variable 'sp' returned}}
#else
return ([&](SmartPtr<R> argsp) {
#endif
SmartPtr<R> localsp;
take(sp);
take(argsp);
@ -536,11 +518,7 @@ void e() {
auto e14 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&ptr](R* argptr) { // expected-error{{address of stack memory associated with local variable 'ptr' returned}}
#else
return ([&ptr](R* argptr) {
#endif
R* localptr;
ptr->method();
argptr->method();
@ -550,11 +528,7 @@ void e() {
auto e15 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&sp](SmartPtr<R> argsp) { // expected-error{{address of stack memory associated with local variable 'sp' returned}}
#else
return ([&sp](SmartPtr<R> argsp) {
#endif
SmartPtr<R> localsp;
sp->method();
argsp->method();
@ -564,11 +538,7 @@ void e() {
auto e16 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&ptr](R* argptr) { // expected-error{{address of stack memory associated with local variable 'ptr' returned}}
#else
return ([&ptr](R* argptr) {
#endif
R* localptr;
take(ptr);
take(argptr);
@ -578,11 +548,7 @@ void e() {
auto e17 = []() {
R* ptr;
SmartPtr<R> sp;
#if __cplusplus >= 201703L
return ([&sp](SmartPtr<R> argsp) { // expected-error{{address of stack memory associated with local variable 'sp' returned}}
#else
return ([&sp](SmartPtr<R> argsp) {
#endif
SmartPtr<R> localsp;
take(sp);
take(argsp);