mirror of
https://github.com/boostorg/function.git
synced 2025-07-25 10:27:14 +02:00
Split default and mixin constructor into separate constructors (instead of using default value) because of MSVC 7.0b2 (Peter Dimov)
[SVN r11139]
This commit is contained in:
@ -447,7 +447,9 @@ namespace boost {
|
|||||||
#endif // BOOST_FUNCTION_USE_VIRTUAL_FUNCTIONS
|
#endif // BOOST_FUNCTION_USE_VIRTUAL_FUNCTIONS
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit BOOST_FUNCTION_FUNCTION(const Mixin& m = Mixin()) :
|
BOOST_FUNCTION_FUNCTION() : function_base(), Mixin() BOOST_FUNCTION_INIT {}
|
||||||
|
|
||||||
|
explicit BOOST_FUNCTION_FUNCTION(const Mixin& m) :
|
||||||
function_base(), Mixin(m) BOOST_FUNCTION_INIT
|
function_base(), Mixin(m) BOOST_FUNCTION_INIT
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user