https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78147
Dan Raviv changed:
What|Removed |Added
CC||dan.raviv at gmail dot com
--- Comment #8 fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106239
--- Comment #4 from Dan Raviv ---
C does meet the CopyInsertible requirements:
https://godbolt.org/z/8j7KcbhdM
#include
class C {
const int m_x;
public:
C(int x) : m_x (x) {}
};
int main()
{
// C is CopyInsertable:
{
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
Sev