$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2004-08-10 05:14:01
> How should deal with this one?
>
> Any pointers?
Either:
BOOST_NO_STDC_NAMESPACE is defined, in which case the usual namespace std{
using toupper; } workaround will fix it or:
toupper is being defined as a macro, in which case use: (std::toupper)(x) as
a workaround.
John.