forked from boostorg/config
removed erronious const qualifier
[SVN r11370]
This commit is contained in:
@@ -17,7 +17,7 @@ namespace boost_has_two_arg_use_facet{
|
|||||||
int test()
|
int test()
|
||||||
{
|
{
|
||||||
std::locale l;
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -26,3 +26,4 @@ int test()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user