https://bugs.kde.org/show_bug.cgi?id=372347
Paul Floyd <pa...@free.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pa...@free.fr --- Comment #6 from Paul Floyd <pa...@free.fr> --- Without any options, g++ now defaults to -std=gnu++14 (see here https://gcc.gnu.org/onlinedocs/gcc/Standards.html) It's possible to use compiler options like -std=c++11 or -fno-sized-deallocator to avoid the Valgrind issue, but this will mean that the sized operator delete won't be used. There's a full list of post-C++11 new and delete operators here http://en.cppreference.com/w/cpp/memory/new/operator_delete I guess that the 12 overloads marked as C++14 and C++17 aren't currently supported by Valgrind. I'll look at making a patch for this. -- You are receiving this mail because: You are watching all bug changes.