missing constexpr

This commit is contained in:
Joachim Schoeberl 2025-01-06 18:33:44 +01:00
parent 6af9b48bda
commit 5642d435e1

View File

@ -187,7 +187,7 @@ namespace netgen
constexpr TIndex operator-= (int add) { i -= add; return TIndex{*this}; }
constexpr TIndex operator-= (size_t add) { i -= add; return TIndex{*this}; }
auto operator- (Index i2) const { return i-i2.i; }
constexpr auto operator- (Index i2) const { return i-i2.i; }
// bool operator== (Index i2) const { return i==i2.i; }
// bool operator!= (Index i2) const { return i!=i2.i; }