$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Darin Adler (darin_at_[hidden])
Date: 2000-01-11 17:56:28
> In your comments and your code you mention std::tolower, but I think you mean
> ::tolower. std::tolower(T, locale) returns type T, but ::tolower(int) returns
> type int.
Both the tolower in <cctype> and the tolower in <locale> are supposed to be
named std::tolower, overloading each other. Neither one is supposed to be in
the global namespace.
My guess from your message is that Visual C++ gets this wrong.
-- Darin