From 816cad7bd8bc24b7c88cf1af911bee98c53f72d3 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Wed, 28 Jan 2009 14:38:48 +0000 Subject: [PATCH] Fix BOOST_NO_STDC_NAMESPACE problem; see ticket 2687 [SVN r50844] --- include/boost/detail/utf8_codecvt_facet.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/detail/utf8_codecvt_facet.hpp b/include/boost/detail/utf8_codecvt_facet.hpp index 5a73e54..1de932c 100644 --- a/include/boost/detail/utf8_codecvt_facet.hpp +++ b/include/boost/detail/utf8_codecvt_facet.hpp @@ -86,9 +86,11 @@ #include #if defined(BOOST_NO_STDC_NAMESPACE) +namespace std { using ::codecvt; using ::mbstate_t; using ::size_t +} #endif #if !defined(__MSL_CPP__) && !defined(__LIBCOMO__)