Made one-arg constructors explicit in shapes classes

This commit is contained in:
Laurent Gomila 2011-12-04 20:43:28 +01:00
parent a2fcb75876
commit 6381d10d40
4 changed files with 7 additions and 4 deletions

View file

@ -31,8 +31,9 @@
namespace sf
{
////////////////////////////////////////////////////////////
ConvexShape::ConvexShape()
ConvexShape::ConvexShape(unsigned int pointsCount)
{
SetPointsCount(pointsCount);
}