[Positioner] Fix Point3D::operator bool()

This commit is contained in:
Matteo Cypriani 2012-06-20 17:26:00 +02:00
parent 91ff55ca0e
commit 6a13e4fc54
1 changed files with 2 additions and 2 deletions

View File

@ -178,8 +178,8 @@ Point3D::operator std::string(void) const
Point3D::operator bool(void) const
{
return
x != 0 &&
y != 0 &&
x != 0 ||
y != 0 ||
z != 0 ;
}