https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63239

            Bug ID: 63239
           Summary: DWARF does not represent C++ deleted methods
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mpolacek at gcc dot gnu.org

C++11 has implicitly deleted functions.  These are declared with the = delete
specifier, and their usage in the program is forbidden.

struct A
{ 
  int i;
  A() = delete;
};
A a = { 42 };

However, it seems that currently the deleted functions are emitted like any
other.

Reply via email to