At Sunday 2002/11/10 15:58, you wrote:
"Victor A. Wagner, Jr." <[EMAIL PROTECTED]> writes:

> I've chased the issue down to the line:
> #elif defined(BOOST_MSVC) && (BOOST_MSVC == 1300) &&
> defined(BOOST_DINKUMWARE_STDLIB) && (1/*BOOST_DINKUMWARE_STDLIB ==
> 1310*/)
>
> which I've modified on MY system as you see.
> apparently BOOST_DINKUMWARE_STDLIB is NOT equal to 1310
> because that clears up the errors in all but one of my programs

That's a weird number to look for in the first place, since the
dinkumware versions I've seen all look like 3xx.
Yup, this works
#elif defined(BOOST_MSVC) && (BOOST_MSVC == 1300) && defined(BOOST_DINKUMWARE_STDLIB) && (BOOST_DINKUMWARE_STDLIB == 310)

I'd check it in, but I haven't write access to the repository.
I still have the problem in ONE of my programs.



--
                       David Abrahams
   [EMAIL PROTECTED] * http://www.boost-consulting.com
Boost support, enhancements, training, and commercial distribution

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Victor A. Wagner Jr.      http://rudbek.com
PGP RSA fingerprint = 4D20 EBF6 0101 B069 3817 8DBF C846 E47A
PGP D-H fingerprint = 98BC 65E3 1A19 43EC 3908 65B9 F755 E6F4 63BB 9D93
The five most dangerous words in the English language:
              "There oughta be a law"

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to