2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 18:52:26 +00:00

Removed useless default arg -- it was confusing MSVC

[SVN r12860]
This commit is contained in:
Dave Abrahams
2002-02-20 05:12:47 +00:00
parent 622ff9d764
commit 266923d9e8

View File

@@ -122,7 +122,7 @@ class class_ : private objects::class_base
// Define the constructor with the given Args, which should be an
// MPL sequence of types.
template <class Args>
self& def_init(Args const& = Args())
self& def_init(Args const&)
{
def("__init__", make_constructor<T,Args,HolderGenerator>());
return *this;