From fab9df7825012bce102c3533b91a74bc441d47f3 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Mon, 8 Oct 2007 14:13:58 +0100 Subject: [PATCH] Use 'const Ptr' rather than 'Ptr const' --- src/core/ptr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ptr.h b/src/core/ptr.h index 8c7b32c85..62f536f34 100644 --- a/src/core/ptr.h +++ b/src/core/ptr.h @@ -353,7 +353,7 @@ operator != (Ptr const &lhs, Ptr const &rhs) } template -bool operator < (Ptr const &lhs, Ptr const &rhs) +bool operator < (const Ptr &lhs, const Ptr &rhs) { return PeekPointer (lhs) < PeekPointer (rhs); }