Skip to content
Snippets Groups Projects
Commit 21ab302e authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[cleanup] Cleanup BitVector

* There are no virtual methods, hence we don't need a virtual destructor
* Export BitVector type
parent f133c203
No related branches found
No related tags found
No related merge requests found
...@@ -11,13 +11,15 @@ class CanIgnore ...@@ -11,13 +11,15 @@ class CanIgnore
{ {
public: public:
using BitVector = BitVectorType;
/** \brief Default constructor */ /** \brief Default constructor */
CanIgnore() CanIgnore()
: ignoreNodes_(nullptr) : ignoreNodes_(nullptr)
{} {}
/** \brief Virtual destructor. Does NOT delete the bitfield! */ /** \brief Virtual destructor. Does NOT delete the bitfield! */
virtual ~CanIgnore() ~CanIgnore()
{} {}
/** \brief A flag for each degree of freedom stating whether the /** \brief A flag for each degree of freedom stating whether the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment