From ee4b06bb504c97cd7dbfe47455bb210d8a8fc1f4 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 27 May 2003 21:07:40 +0000 Subject: [PATCH] static keyword removed (Aye, Aye Sir David Abrahams!) [SVN r18570] --- include/boost/python/cast.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/cast.hpp b/include/boost/python/cast.hpp index d20cbd3a..a1d2d607 100755 --- a/include/boost/python/cast.hpp +++ b/include/boost/python/cast.hpp @@ -78,7 +78,7 @@ namespace detail { typedef typename add_cv::type src_t; typedef typename add_cv::type target_t; - static bool const same = is_same::value; + bool const same = is_same::value; return detail::upcaster::execute(x, (Target*)0); }