2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

gcc-2.95 workaround

[SVN r17620]
This commit is contained in:
Dave Abrahams
2003-02-25 00:56:55 +00:00
parent 600602f9dc
commit 5cdebaf896

View File

@@ -315,7 +315,7 @@ namespace detail
, mpl::push_front<>
>::type args;
typedef typename ClassT::holder_selector holder_selector_t;
typedef typename ClassT::holder_selector::type selector_t;
typedef typename ClassT::held_type held_type_t;
cl.def(
@@ -327,7 +327,7 @@ namespace detail
// Using runtime type selection works around a CWPro7 bug.
, holder_selector_t::execute((held_type_t*)0).get()
# else
, holder_selector_t::type::get()
, selector_t::get()
# endif
)
, doc