From 155b7c65609f67cee927dc45d27baae2d07f42f2 Mon Sep 17 00:00:00 2001 From: Antoine Brodin Date: Fri, 9 Jan 2015 17:56:50 +0000 Subject: Allow building with libc++ r224926 PR: ports/196627 Submitted by: dim@ --- games/epiar/files/patch-Source_Engine_hud.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 games/epiar/files/patch-Source_Engine_hud.h (limited to 'games/epiar/files/patch-Source_Engine_hud.h') diff --git a/games/epiar/files/patch-Source_Engine_hud.h b/games/epiar/files/patch-Source_Engine_hud.h new file mode 100644 index 000000000000..3b4d55b4eb26 --- /dev/null +++ b/games/epiar/files/patch-Source_Engine_hud.h @@ -0,0 +1,11 @@ +--- Source/Engine/hud.h.orig 2012-10-27 08:18:51 UTC ++++ Source/Engine/hud.h +@@ -44,7 +44,7 @@ enum HudMap{ + class AlertMessage { + public: + AlertMessage( string message, Uint32 start ); +- bool operator ==(const AlertMessage& other) {return (start == other.start) && (message == other.message);} ++ bool operator ==(const AlertMessage& other) const {return (start == other.start) && (message == other.message);} + string message; + Uint32 start; + }; -- cgit v1.2.3