diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/asan/pr81340.C')
-rw-r--r-- | gcc/testsuite/g++.dg/asan/pr81340.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.dg/asan/pr81340.C b/gcc/testsuite/g++.dg/asan/pr81340.C index 76ac08a9a56..9db5bb46ce7 100644 --- a/gcc/testsuite/g++.dg/asan/pr81340.C +++ b/gcc/testsuite/g++.dg/asan/pr81340.C @@ -10,13 +10,13 @@ public: a(char *) : c(0, d) {} }; class e { - int f(const int &, const int &, const int &, bool, bool, bool, int, bool); + void f(const int &, const int &, const int &, bool, bool, bool, int, bool); }; class g { public: static g *h(); void i(a, void *); }; -int e::f(const int &, const int &, const int &, bool j, bool, bool, int, bool) { +void e::f(const int &, const int &, const int &, bool j, bool, bool, int, bool) { g::h()->i("", &j); } |