]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/format/format_implementation.hpp
use boost::format
[lyx.git] / boost / boost / format / format_implementation.hpp
index 4cf669145f168354a919f2cd502d2b201cd48c87..611e0959779488f5f95610465da24b217e76bfc2 100644 (file)
@@ -152,7 +152,7 @@ basic_format<Ch,Tr>& basic_format<Ch,Tr> ::clear_bind(int argN)
     if(argN<1 || argN > num_args_ || bound_.size()==0 || !bound_[argN-1] )
       {
        if( exceptions() & out_of_range_bit )
-         boost::throw_exception(out_of_range()); // arg not in range.
+         boost::throw_exception(io::out_of_range()); // arg not in range.
        else return *this;
       }
     bound_[argN-1]=false;