CFPP
CFPP copied to clipboard
More explicit constructors
The following should not be valid:
CF::Dictionary d;
d = true;
Call is:
d.operator=( CF::Dictionary( ( CFIndex )true ) );
Use explicit constructors to fix the issue...
seems would be nice extension