Unbreak build with libc++ (#1457)

This commit is contained in:
Jan Beich
2023-01-31 00:03:23 +00:00
committed by GitHub
parent d4e2a0fd16
commit f90ff8303b
9 changed files with 23 additions and 21 deletions

View File

@@ -33,7 +33,7 @@ struct SDwindleNodeData {
bool valid = true;
// For list lookup
bool operator==(const SDwindleNodeData& rhs) {
bool operator==(const SDwindleNodeData& rhs) const {
return pWindow == rhs.pWindow && workspaceID == rhs.workspaceID && position == rhs.position && size == rhs.size && pParent == rhs.pParent &&
children[0] == rhs.children[0] && children[1] == rhs.children[1];
}