From 22feca64f3450d092cf593ba8c2cf34243ef9670 Mon Sep 17 00:00:00 2001 From: Sascha Volkenandt Date: Thu, 4 Jan 2007 13:40:32 +0000 Subject: - added const specifier to operator< for cTimer --- timers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'timers.cpp') diff --git a/timers.cpp b/timers.cpp index 226a8a4..ed986be 100644 --- a/timers.cpp +++ b/timers.cpp @@ -1,6 +1,6 @@ #include "timers.h" -static bool operator<( cTimer & left, cTimer & right ) +static bool operator<( cTimer const& left, cTimer const& right ) { return left.Compare( right ) < 0; } -- cgit v1.2.3