$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2004-07-29 05:30:51
> with the current cvs-version (7/23/2004) i can't build the thread
> library with stlport 4.5.3 and msvc60.
[snipped]
> Sorry about the german error-text. it's something about: can't convert
> char[22] to 'class _STL::invalid_argument'
>
> I don't know that wrong about:
> throw std::invalid_argument("count cannot be zero.");
I suspect the header needs to include <string>, note that while <stdexcept>
needs to forward declare std::basic_string, it doesn't need the full
definition, while the code that generates the error does.
John.