http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60318
Bug ID: 60318 Summary: Documentation bug: C++ Misunderstandings: Implicit Copy-Assignment for Virtual Bases Product: gcc Version: unknown URL: http://gcc.gnu.org/onlinedocs/gcc/Copy-Assignment.html Status: UNCONFIRMED Severity: trivial Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: JuergenGCC at bund dot us That document states "In the example, copying proceeds in the following order: ‘val’, ‘name’ (via strdup), ‘bval’, and ‘name’ again." Instead, it should read: "In the example, copying proceeds in the following order: ‘name’ (via strdup), ‘val’, ‘name’ again, and ‘bval’."