2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

static keyword removed (Aye, Aye Sir David Abrahams!)

[SVN r18570]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2003-05-27 21:07:40 +00:00
parent 16c5435ca8
commit ee4b06bb50

View File

@@ -78,7 +78,7 @@ namespace detail
{
typedef typename add_cv<Source>::type src_t;
typedef typename add_cv<Target>::type target_t;
static bool const same = is_same<src_t,target_t>::value;
bool const same = is_same<src_t,target_t>::value;
return detail::upcaster<same>::execute(x, (Target*)0);
}