﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
133	Better signature for copy constructors.	Thierry Delisle		"Copy constructors now have a weird C copy as a parameter. This is due to historical reasons and should use const reference instead.

I.e. this:
{{{
void ?{}(char &, char);
char ?=?(char &, char);
}}}
Instead of
{{{
void ?{} (char &, char const &);
char const & ?=? (char &, char const &); 
}}}

char ?=?(volatile char &, char);"	enhancement	new	major	cfa-cc	1.0			
