I have started seeing the term "cv-qualified" being thrown around a lot.
An answer to my last question:
if T is a (possibly cv-qualified) class type (Clause 9), the default constructor (12.1) for T is called
Can someone define that for me?
c-v qualified means const and volatile...For e.g:-
// non cv_qualified
int first;
char *second;
// cv-qualified
const int third;
volatile char * fourth;