id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 9594,boost::locale::to_title() does not work,Nathan Adams ,Artyom Beilis,"The boost::locale::to_title() function appears to be broken. This code: int main( int argc, char* argv[] ) { namespace bl = boost::locale; bl::generator gen; std::locale loc( gen(""en_US.UTF-8"") ); std::locale::global(loc); cout.imbue(loc); std::string temp(""ALL UPPERCASE STRING""); temp = bl::to_title(temp,loc); cout << temp << endl; temp = bl::to_lower(temp,loc); cout << temp << endl; return 0; } Outputs the following: ALL UPPERCASE STRING all uppercase string ",Bugs,closed,To Be Determined,locale,Boost 1.55.0,Problem,invalid,,