From 6ab6b66601103378ce92ba576497cc5966b6f807 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 6 Apr 2005 13:40:34 +0000 Subject: [PATCH] One more long -> int fix [SVN r28016] --- include/boost/detail/sp_counted_base_gcc_x86.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/detail/sp_counted_base_gcc_x86.hpp b/include/boost/detail/sp_counted_base_gcc_x86.hpp index 51c7891..1c94d4f 100644 --- a/include/boost/detail/sp_counted_base_gcc_x86.hpp +++ b/include/boost/detail/sp_counted_base_gcc_x86.hpp @@ -162,7 +162,7 @@ public: long use_count() const // nothrow { - return static_cast( use_count_ ); + return static_cast( use_count_ ); } };