mirror of
https://github.com/NGSolve/netgen.git
synced 2025-02-14 06:13:07 +05:00
missing constexpr
This commit is contained in:
parent
6af9b48bda
commit
5642d435e1
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user