aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testimplicitconversions.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Tests if added constructor with custom type creates an implicit converter.Marcelo Lira2012-03-091-1/+9
|
* External conversion operators are now part of a class' implicit conversions.Marcelo Lira2010-02-261-0/+32
| | | | | | | 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/+122
- 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>