mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 14:59:54 +00:00
reinstall fontconfig as needed; const an imbigious == operator
This commit is contained in:
parent
4b742dd461
commit
ad11cc8d8a
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ brew update --quiet
|
|||
[ -z "${TRAVIS}" ] && brew uninstall --ignore-dependencies qt@6 || true
|
||||
|
||||
# Some of these tools can come from places other than brew, so check before installing
|
||||
[ -z "${TRAVIS}" ] && brew install fontconfig
|
||||
[ -z "${TRAVIS}" ] && brew reinstall fontconfig
|
||||
command -v ccache >/dev/null 2>&1 || brew install ccache
|
||||
command -v cmake >/dev/null 2>&1 || brew install cmake
|
||||
command -v qmake >/dev/null 2>&1 || brew install qt@5
|
||||
|
|
|
@ -453,7 +453,7 @@ namespace MWRender
|
|||
: mLeft(left), mTop(top), mRight(right), mBottom(bottom)
|
||||
{
|
||||
}
|
||||
bool operator == (const Box& other)
|
||||
bool operator == (const Box& other) const
|
||||
{
|
||||
return mLeft == other.mLeft && mTop == other.mTop && mRight == other.mRight && mBottom == other.mBottom;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue