cpp20 fix for valijson

i couldn't tell what version of valijson was in here, so i just fixed the error (it was the same as one of the errors websocketspp had)
This commit is contained in:
briaguya
2025-05-07 18:34:31 -04:00
parent 00ac813735
commit b299de0bd7

View File

@@ -29,7 +29,7 @@ struct BasicConstraint: Constraint
BasicConstraint(const BasicConstraint &other)
: m_allocator(other.m_allocator) { }
~BasicConstraint<ConstraintType>() override = default;
~BasicConstraint() override = default;
bool accept(ConstraintVisitor &visitor) const override
{