]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/format/free_funcs.hpp
boost 1.30.2
[lyx.git] / boost / boost / format / free_funcs.hpp
index 5a7e881e448cfefaff2a5ea11741a8b86b63a805..95bbcc1b1acdaf6342a8b56aa17bbb94a83af446 100644 (file)
@@ -25,8 +25,8 @@
 namespace boost {
 
 namespace io {
-  template<class Ch, class Tr> inline
-  std::basic_string<Ch, Tr> str(const basic_format<Ch, Tr>& f)
+  template<class Ch, class Tr> inline 
+  std::basic_string<Ch, Tr> str(const basic_format<Ch, Tr>& f) 
     // adds up all pieces of strings and converted items, and return the formatted string
   {
     return f.str();
@@ -34,30 +34,30 @@ namespace io {
 }   // - namespace io
 
 template< class Ch, class Tr>
-BOOST_IO_STD basic_ostream<Ch, Tr>&
-operator<<( BOOST_IO_STD basic_ostream<Ch, Tr>& os,
-           const boost::basic_format<Ch, Tr>& f)
+BOOST_IO_STD basic_ostream<Ch, Tr>& 
+operator<<( BOOST_IO_STD basic_ostream<Ch, Tr>& os, 
+            const boost::basic_format<Ch, Tr>& f) 
   // effect: "return os << str(f);" but we can try to do it faster
 {
   typedef boost::basic_format<Ch, Tr>   format_t;
-  if(f.items_.size()==0)
+  if(f.items_.size()==0) 
     os << f.prefix_;
   else {
     if(f.cur_arg_ < f.num_args_)
       if( f.exceptions() & io::too_few_args_bit )
-       boost::throw_exception(io::too_few_args()); // not enough variables have been supplied !
-    if(f.style_ & format_t::special_needs)
-       os << f.str();
+        boost::throw_exception(io::too_few_args()); // not enough variables have been supplied !
+    if(f.style_ & format_t::special_needs) 
+        os << f.str();
     else {
     // else we dont have to count chars output, so we dump directly to os :
       os << f.prefix_;
-      for(unsigned long i=0; i<f.items_.size(); ++i)
-       {
-         const typename format_t::format_item_t& item = f.items_[i];
-         os << item.res_;
-         os << item.appendix_;
+      for(unsigned long i=0; i<f.items_.size(); ++i) 
+        {
+          const typename format_t::format_item_t& item = f.items_[i];
+          os << item.res_;
+          os << item.appendix_;
 
-       }
+        }
     }
   }
   f.dumped_=true;