Skip to content
Snippets Groups Projects
Commit 363f8ae0 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Add operator!=

parent 7fbaf133
No related branches found
No related tags found
No related merge requests found
......@@ -109,6 +109,10 @@ public:
return this->rawData() == rhs.rawData();
}
bool operator!=(const FixedLengthVector<T> &rhs) const {
return !(*this == rhs);
}
bool empty() const { return m_data.empty(); }
size_t size() const { return m_data.size(); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment