Skip to content

Commit ee4b06b

Browse files
author
Ralf W. Grosse-Kunstleve
committed
static keyword removed (Aye, Aye Sir David Abrahams!)
[SVN r18570]
1 parent 16c5435 commit ee4b06b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/python/cast.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace detail
7878
{
7979
typedef typename add_cv<Source>::type src_t;
8080
typedef typename add_cv<Target>::type target_t;
81-
static bool const same = is_same<src_t,target_t>::value;
81+
bool const same = is_same<src_t,target_t>::value;
8282

8383
return detail::upcaster<same>::execute(x, (Target*)0);
8484
}

0 commit comments

Comments
 (0)