From bb8bb5fb726efcc49a508c65eec6a8d808954903 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 9 Oct 2001 11:29:03 +0000 Subject: [PATCH] removed erronious const qualifier [SVN r11370] --- test/boost_has_2arg_use_facet.ipp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/boost_has_2arg_use_facet.ipp b/test/boost_has_2arg_use_facet.ipp index 97f89528..f22f7c09 100644 --- a/test/boost_has_2arg_use_facet.ipp +++ b/test/boost_has_2arg_use_facet.ipp @@ -17,7 +17,7 @@ namespace boost_has_two_arg_use_facet{ int test() { std::locale l; - const std::ctype& ct = std::use_facet(l, (const std::ctype*)0); + const std::ctype& ct = std::use_facet(l, (std::ctype*)0); return 0; } @@ -26,3 +26,4 @@ int test() +