From c34618a11cf4913b4c1810a91e9cd462f1835034 Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 16 Oct 2010 17:37:48 +0000 Subject: [PATCH] (svn r20948) -Fix (r20880): compiler warning --- src/pathfinder/npf/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pathfinder/npf/queue.h b/src/pathfinder/npf/queue.h index 1f4f08c91c..0587c85bc7 100644 --- a/src/pathfinder/npf/queue.h +++ b/src/pathfinder/npf/queue.h @@ -99,7 +99,7 @@ struct Hash { /** * Gets the current size of the hash. */ - uint FORCEINLINE GetSize() const + FORCEINLINE uint GetSize() const { return this->size; }