STYLE: remove deprecated bitSet::used() method

- The 'used()' method was for transitional compatibility with the now
  defunct PackedBoolList.

  The canonical method name for returning a labelList of 'on' bits is
  toc().
This commit is contained in:
Mark Olesen
2019-03-27 09:04:13 +01:00
parent 626c97cbea
commit 77076e5302

View File

@ -551,14 +551,6 @@ public:
{
return *this;
}
// Housekeeping
//- Deprecated(2018-04) compatibility name for PackedBoolList
// \deprecated(2018-04) - use toc() method
inline labelList used() const { return toc(); }
};