removed erronious const qualifier

[SVN r11370]
This commit is contained in:
John Maddock
2001-10-09 11:29:03 +00:00
parent 8a851846ce
commit bb8bb5fb72

View File

@@ -17,7 +17,7 @@ namespace boost_has_two_arg_use_facet{
int test()
{
std::locale l;
const std::ctype<char>& ct = std::use_facet(l, (const std::ctype<char>*)0);
const std::ctype<char>& ct = std::use_facet(l, (std::ctype<char>*)0);
return 0;
}
@@ -26,3 +26,4 @@ int test()