aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/pointf.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added test for removed pointer out argument.Marcelo Lira2012-03-081-0/+9
|
* Added test for overload decisor handling container dependencies.Marcelo Lira2012-03-081-0/+111
Explaining with an example. Consider a function called "function" with two signatures accepting a list of Point and a list of PointF, respectively. Consider also that Point is implicitly convertible to PointF. void function(list<Point>&) void function(list<PointF>&) A list of Point should be checked before a list of PointF. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>