$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2006-05-30 10:42:49
Chris Hoeppler wrote:
> Hi,
> 
> the following snippet used to compile with the last released versions of 
> boost:
> 
> #include <boost/algorithm/string/replace.hpp>
> #include <string>
> 
> int main() {
>     char* esc = "\t";
>     char* sub = "\\t";
>     std::string str("\tbla\t");
> 
>     boost::algorithm::replace_all(str, esc, sub);
>  
>     return 0;
> }
> 
> Trying the current anonymous cvs version, it fails to compile on linux with
> gcc version 3.3.3. Is this to be expected?
For the moment "yes". The string library needs to upgraded to the newest 
version of boost.range.
-Thorsten