How do we get discord access? My user name is gingermanii
Raymond Mills
2025-05-31 01:01:11 +0000 UTC
I mentioned in the video 'It can't be moved but it can be copied' (10:05). Then, when I put it in CPPInsights to add more context (https://cppinsights.io/s/7e1eedad), I read 'default' as 'deleted' and then wrote 'deleted' in the video caption without thinking. I'll reupload the video when it hits YouTube with that correction. Thanks for catching that.
Coding Jesus
2025-05-20 23:07:44 +0000 UTC
It's unclear what you mean when you say move operations are implicitly deleted if a class contains const member. If you're saying the implicit move constructor is deleted that is not true. It will still do a memberwise move and the member that is const will be copied instead of moved but the rest of the non const members can still be moved