Index: quoted_manip.hpp =================================================================== --- quoted_manip.hpp (revision 86799) +++ quoted_manip.hpp (working copy) @@ -68,7 +68,7 @@ basic_string_inserter_imp(std::basic_ostream& os, std::basic_string const & string, Char escape, Char delim) { - os << delim; + // os << delim; typename std::basic_string::const_iterator end_it = string.end(); for (typename std::basic_string::const_iterator @@ -80,7 +80,7 @@ os << escape; os << *it; } - os << delim; + // os << delim; return os; }