Adding VMA
This commit is contained in:
@@ -42,6 +42,10 @@ public:
|
||||
{
|
||||
return p == other.p;
|
||||
}
|
||||
constexpr bool operator!=(const IteratorBase &other) const
|
||||
{
|
||||
return p != other.p;
|
||||
}
|
||||
constexpr std::strong_ordering operator<=>(const IteratorBase &other) const
|
||||
{
|
||||
return p <=> other.p;
|
||||
|
||||
@@ -81,7 +81,7 @@ public:
|
||||
}
|
||||
constexpr bool operator!=(const IteratorBase& other)
|
||||
{
|
||||
return node == other.node;
|
||||
return node != other.node;
|
||||
}
|
||||
constexpr bool operator==(const IteratorBase& other)
|
||||
{
|
||||
@@ -89,7 +89,7 @@ public:
|
||||
}
|
||||
constexpr std::strong_ordering operator<=>(const IteratorBase& other)
|
||||
{
|
||||
return node == other.node;
|
||||
return node <=> other.node;
|
||||
}
|
||||
constexpr IteratorBase& operator++()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user