[Positioner] Add missing ResultList::operator!=()

This commit is contained in:
Matteo Cypriani 2016-11-03 15:53:17 -04:00
parent 16d4422a2b
commit df0c08c271
1 changed files with 11 additions and 0 deletions

View File

@ -113,4 +113,15 @@ inline void ResultList::set_request(const Request *const _request)
/* *** Write accessors *** */
inline bool ResultList::operator!=(const ResultList &source) const
{
return !this->operator==(source);
}
#endif // _OWLPS_POSITIONING_RESULTLIST_HH_