mirror of
https://github.com/boostorg/utility.git
synced 2025-09-27 17:50:55 +02:00
remove "explicit" on two- and three-argument constructors to avoid
error on HP aCC [SVN r11097]
This commit is contained in:
@@ -42,12 +42,12 @@ protected:
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
template< typename T1, typename T2 >
|
template< typename T1, typename T2 >
|
||||||
explicit base_from_member( T1 x1, T2 x2 )
|
base_from_member( T1 x1, T2 x2 )
|
||||||
: member( x1, x2 )
|
: member( x1, x2 )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
template< typename T1, typename T2, typename T3 >
|
template< typename T1, typename T2, typename T3 >
|
||||||
explicit base_from_member( T1 x1, T2 x2, T3 x3 )
|
base_from_member( T1 x1, T2 x2, T3 x3 )
|
||||||
: member( x1, x2, x3 )
|
: member( x1, x2, x3 )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user