id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 1195,patch: boost/format/parsing.hpp does not compile if BOOST_NO_LOCALE_ISDIGIT is defined,andyc@…,Samuel Krempp,"When compiling with gcc, we get a warning about unused fac variable in boost/format/parsing.hpp. The following patch fixes it: {{{ ===== boost/format/parsing.hpp 1.1 vs + ===== --- 1.1/boost/format/parsing.hpp 2007-08-17 11:57:50 +01:00 +++ +/boost/format/parsing.hpp 2007-08-17 13:28:25 +01:00 @@ -47,6 +47,7 @@ #if ! defined( BOOST_NO_LOCALE_ISDIGIT ) return fac.is(std::ctype::digit, c); # else + (void) fac; using namespace std; return isdigit(c); #endif }}}",Bugs,closed,Boost 1.35.0,format,Boost 1.34.1,Problem,fixed,,