$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Gary Powell (Gary.Powell_at_[hidden])
Date: 2001-04-10 15:39:31
>>
When I comment the #if/#endif lines it compiles but crashes when run. :-)
<<
Hmm..
"Runs with my compilers!" :>
No seriously, can you run the debugger and see what the problem is?
>>
> I wonder what copy constructor does MSVC use. :-)
<<
I think it uses
template<typename Y>
auto_ptr(auto_ptr<Y> &rhs);
because if I undef the BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP for MSVC I get
errors about multiple definitions of
auto_ptr(auto_ptr &rhs);
-gary-