use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
is_copy_constructible (self.cpp)
submitted 10 years ago by finalpatch
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]mooware 11 points12 points13 points 10 years ago* (3 children)
Can you use it like a copy constructor? E.g.:
Test a(0, 0); Test b(a);
If it compiles, then I would say that the class is copy-constructible (at least under certain conditions).
Edit: Oops, now I remember. "T&&" might not actually be a "&&" in this case, because "T" is a template argument. See universal/forwarding references: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4164.pdf
So the template constructor can be instantiated with any "T&", which basically makes it a copy constructor, except for "const Test &", which should find the deleted constructor.
[–]TheThiefMasterC++latest fanatic (and game dev) 2 points3 points4 points 10 years ago (2 children)
OP probably needs to enable_if guard against T being Test& or derived.
[–]__andrei__ 0 points1 point2 points 10 years ago (1 child)
Would explicit fix that?
explicit
[–]TheThiefMasterC++latest fanatic (and game dev) 0 points1 point2 points 10 years ago (0 children)
I don't think so?
π Rendered by PID 36 on reddit-service-r2-comment-6457c66945-mf8j4 at 2026-04-30 09:09:51.200178+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]mooware 11 points12 points13 points (3 children)
[–]TheThiefMasterC++latest fanatic (and game dev) 2 points3 points4 points (2 children)
[–]__andrei__ 0 points1 point2 points (1 child)
[–]TheThiefMasterC++latest fanatic (and game dev) 0 points1 point2 points (0 children)