]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/format/format_implementation.hpp
typos
[lyx.git] / boost / boost / format / format_implementation.hpp
index cab24e3cc7d7a17b747b69267758326adada4a16..3dd68e78d22c781ac0a68ec4e910f7804ac67501 100644 (file)
@@ -135,7 +135,7 @@ namespace boost {
 
         for(unsigned long i=0; i<items_.size(); ++i) {
             // clear converted strings only if the corresponding argument is not  bound :
-            if( bound_.size()==0 || !bound_[ items_[i].argN_ ] )
+            if( bound_.size()==0 || items_[i].argN_<0 || !bound_[ items_[i].argN_ ] )
                 items_[i].res_.resize(0);
         }
         cur_arg_=0; dumped_=false;