[Positioning] Fix Measurement::operator bool()

Use !ss.list.empty() instead of ss_list.size() > 0.
This commit is contained in:
Matteo Cypriani 2011-05-11 09:47:29 +02:00
parent 799af46e57
commit fac5af8655
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ inline Measurement::operator bool() const
{
return
ap != NULL ||
ss_list.size() > 0 ;
! ss_list.empty() ;
}