https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85250
Dan Raviv changed:
What|Removed |Added
CC||dan.raviv at gmail dot com
--- Comment #1
RMED
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
h
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=78147
Dan Raviv changed:
What|Removed |Added
CC||dan.raviv at gmail dot com
--- Comment #8