aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testimplicitconversions.h
Commit message (Collapse)AuthorAgeFilesLines
* External conversion operators are now part of a class' implicit conversions.Marcelo Lira2010-02-261-0/+1
| | | | | | | AbstractMetaClass::implicitConversions() returns externally declared conversion operators in addition to its own implicit constructors. The implicit conversion tests where extended with the new case.
* Fix AbstractMetaFunction::implicitConversions.Hugo Lima2010-02-081-0/+40
- Public ctors added by the user with 1 value-type parameter are always added to the implicity conversion list. - If the ctor visibility of an function was modified from public to private, the function isn't added to the result. Reviewed by Renato Araújo <renato.filho@openbossa.org>