This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/79611] New: missing space in diagnostic: placement new constructing an object of type %qT


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

            Bug ID: 79611
           Summary: missing space in diagnostic: placement new
                    constructing an object of type %qT
           Product: gcc
           Version: 7.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roland.illig at gmx dot de
  Target Milestone: ---

From cp/init.c:

    warning_at (loc, OPT_Wplacement_new_,
                exact_size ?
                "placement new constructing an object of type %qT "
                "and size %qwu in a region of type %qT and size %qwi"
                : "placement new constructing an object of type %qT"
                "and size %qwu in a region of type %qT and size "
                "at most %qwu",
                type, bytes_need, TREE_TYPE (oper),
                bytes_avail);

There is a space missing between "%qt" and "and".

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]