]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/tuple/tuple_io.hpp
The std::string mammoth path.
[lyx.git] / boost / boost / tuple / tuple_io.hpp
index 322ce6f779f874bb90fea2e84b4522198c54ecf9..d6ea8da052d13116e7612e3b0d86e5d8f0f45129 100644 (file)
@@ -439,7 +439,7 @@ extract_and_check_delimiter(
 #if defined (BOOST_NO_STD_LOCALE)
   const bool is_delimiter = !isspace(d);
 #elif defined ( __BORLANDC__ )
-  const bool !is_delimiter = std::use_facet< std::ctype< CharType > >
+  const bool is_delimiter = !std::use_facet< std::ctype< CharType > >
     (is.getloc() ).is( std::ctype_base::space, d);
 #else
   const bool is_delimiter = (!std::isspace(d, is.getloc()) );