public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/106239] New: vector::resize(size_type, const value_type&) should not require copy-assignability
@ 2022-07-09  3:40 dan.raviv at gmail dot com
  2022-07-09  5:49 ` [Bug libstdc++/106239] " pinskia at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: dan.raviv at gmail dot com @ 2022-07-09  3:40 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 106239
           Summary: vector::resize(size_type, const value_type&) should
                    not require copy-assignability
           Product: gcc
           Version: 12.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dan.raviv at gmail dot com
  Target Milestone: ---

Copy-constructibility should be enough.
Related to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83981

https://godbolt.org/z/a1sYxThxG
Compiles on Clang but not GCC:

#include <vector>

class C {
    const int m_x;
public:
    C(int x) : m_x (x) {}
};

int main()
{
    auto v = std::vector<C>(10, C(42));
    // v.resize(11);     //   Correctly does not compile
    v.resize(11, C(42)); // Incorrectly does not compile on GCC
}

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-02-16 12:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-09  3:40 [Bug libstdc++/106239] New: vector::resize(size_type, const value_type&) should not require copy-assignability dan.raviv at gmail dot com
2022-07-09  5:49 ` [Bug libstdc++/106239] " pinskia at gcc dot gnu.org
2022-07-09  5:54 ` pinskia at gcc dot gnu.org
2022-07-09 11:13 ` redi at gcc dot gnu.org
2022-07-09 17:03 ` dan.raviv at gmail dot com
2023-02-08 11:27 ` redi at gcc dot gnu.org
2023-02-16 12:53 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).