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

@@ -30,7 +30,7 @@ struct SMasterNodeData {
int workspaceID = -1;
bool operator==(const SMasterNodeData& rhs) {
bool operator==(const SMasterNodeData& rhs) const {
return pWindow == rhs.pWindow;
}
};
@@ -39,7 +39,7 @@ struct SMasterWorkspaceData {
int workspaceID = -1;
eOrientation orientation = ORIENTATION_LEFT;
bool operator==(const SMasterWorkspaceData& rhs) {
bool operator==(const SMasterWorkspaceData& rhs) const {
return workspaceID == rhs.workspaceID;
}
};