mirror of
https://github.com/boostorg/python.git
synced 2026-01-21 17:12:22 +00:00
work around g++ (GCC) 3.4.0 20031230 (experimental) internal compiler error
[SVN r21432]
This commit is contained in:
@@ -38,13 +38,13 @@ class long_ : public detail::long_base
|
||||
|
||||
template <class T>
|
||||
explicit long_(T const& rhs)
|
||||
: base(object(rhs))
|
||||
: detail::long_base(object(rhs))
|
||||
{
|
||||
}
|
||||
|
||||
template <class T, class U>
|
||||
explicit long_(T const& rhs, U const& base)
|
||||
: base(object(rhs), object(base))
|
||||
: detail::long_base(object(rhs), object(base))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user