Opened 6 years ago

Last modified 5 months ago

#133 new enhancement

Better signature for copy constructors. — at Initial Version

Reported by: Thierry Delisle Owned by:
Priority: major Component: cfa-cc
Version: 1.0 Keywords:
Cc:

Description

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 ?{} (int&, const int&);
int& ?=? (int&, const int&); 

Instead of

void ?{} (int&, int);
int& ?=? (int&, int); 

Change History (0)

Note: See TracTickets for help on using tickets.