]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/tuple/tuple_io.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / tuple / tuple_io.hpp
index f21c7edacc999102330b39d0240964898e292980..ce5517027e143b6a2886055271ed7b7e9dd58d1a 100644 (file)
@@ -102,7 +102,7 @@ class tuple_manipulator {
   CharType f_c;
 public:
   explicit tuple_manipulator(detail::format_info::manipulator_type m,
-                             const char c = 0)
+                             CharType c = CharType())
      : mt(m), f_c(c) {}
 
    template<class CharTrait>
@@ -259,7 +259,7 @@ extract_and_check_delimiter(
 
 #if defined (BOOST_NO_STD_LOCALE)
   const bool is_delimiter = !isspace(d);
-#elif defined ( __BORLANDC__ )
+#elif defined ( BOOST_BORLANDC )
   const bool is_delimiter = !std::use_facet< std::ctype< CharType > >
     (is.getloc() ).is( std::ctype_base::space, d);
 #else