From fac4ebeca933329b7e5ae19bef5b46dc716b81f7 Mon Sep 17 00:00:00 2001 From: msebor Date: Sun, 14 Jan 2018 21:54:25 +0000 Subject: [PATCH] PR c++/81327 - cast to void* does not suppress -Wclass-memaccess gcc/ChangeLog: PR c++/81327 * doc/invoke.texi (-Wlass-memaccess): Document suppression by casting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@256677 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/doc/invoke.texi | 23 +++++++++++++---------- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 61a13aa61fb..5934cc0349a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-01-14 Martin Sebor + + PR c++/81327 + * doc/invoke.texi (-Wlass-memaccess): Document suppression by casting. + 2018-01-14 Jakub Jelinek * config.gcc (i[34567]86-*-*): Remove one duplicate gfniintrin.h diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 9ea765ee22f..f57c0584463 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -2956,20 +2956,23 @@ C++17 it calls @code{f}. @item -Wclass-memaccess @r{(C++ and Objective-C++ only)} @opindex Wclass-memaccess Warn when the destination of a call to a raw memory function such as -@code{memset} or @code{memcpy} is an object of class type writing into which -might bypass the class non-trivial or deleted constructor or copy assignment, -violate const-correctness or encapsulation, or corrupt the virtual table. -Modifying the representation of such objects may violate invariants maintained -by member functions of the class. For example, the call to @code{memset} -below is undefined because it modifies a non-trivial class object and is, -therefore, diagnosed. The safe way to either initialize or clear the storage -of objects of such types is by using the appropriate constructor or assignment -operator, if one is available. +@code{memset} or @code{memcpy} is an object of class type, and when writing +into such an object might bypass the class non-trivial or deleted constructor +or copy assignment, violate const-correctness or encapsulation, or corrupt +the virtual table. Modifying the representation of such objects may violate +invariants maintained by member functions of the class. For example, the call +to @code{memset} below is undefined because it modifies a non-trivial class +object and is, therefore, diagnosed. The safe way to either initialize or +clear the storage of objects of such types is by using the appropriate +constructor or assignment operator, if one is available. @smallexample std::string str = "abc"; -memset (&str, 0, 3); +memset (&str, 0, sizeof str); @end smallexample The @option{-Wclass-memaccess} option is enabled by @option{-Wall}. +Explicitly casting the pointer to the class object to @code{void *} or +to a type that can be safely accessed by the raw memory function suppresses +the warning. @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)} @opindex Wnon-virtual-dtor -- 2.11.4.GIT