mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
fix bug in != operator
This commit is contained in:
parent
b078850c6a
commit
58f3436d9b
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ inline bool operator==(const AACube& a, const AACube& b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool operator!=(const AACube& a, const AACube& b) {
|
inline bool operator!=(const AACube& a, const AACube& b) {
|
||||||
return a.getCorner() != b.getCorner() || a.getScale() == b.getScale();
|
return a.getCorner() != b.getCorner() || a.getScale() != b.getScale();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline QDebug operator<<(QDebug debug, const AACube& cube) {
|
inline QDebug operator<<(QDebug debug, const AACube& cube) {
|
||||||
|
|
Loading…
Reference in a new issue