From 698c90b3ee01bb4e8be7f8ac72ce2029bb681dae Mon Sep 17 00:00:00 2001 From: Evil Eye Date: Sun, 16 Jun 2019 14:41:34 +0200 Subject: [PATCH] fix builds against MyGUI master --- components/esm/custommarkerstate.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esm/custommarkerstate.hpp b/components/esm/custommarkerstate.hpp index fc9286bfe..2be43c53b 100644 --- a/components/esm/custommarkerstate.hpp +++ b/components/esm/custommarkerstate.hpp @@ -16,7 +16,7 @@ struct CustomMarker std::string mNote; - bool operator == (const CustomMarker& other) + bool operator == (const CustomMarker& other) const { return mNote == other.mNote && mCell == other.mCell && mWorldX == other.mWorldX && mWorldY == other.mWorldY; }