diff --git a/config.htm b/config.htm index 17a1b2d7..a9cbb354 100644 --- a/config.htm +++ b/config.htm @@ -749,7 +749,7 @@ f(&bar); // should choose #2. conforming std::use_facet. - BOOST_NO_STD_WSTREAM + BOOST_NO_STD_WSTREAMBUF Standard library The standard library's implementation of std::basic_streambuf<wchar_t> is either missing, incomplete, or buggy. @@ -1035,11 +1035,16 @@ provide workarounds for compiler/standard library defects.

the use of typename for dependent types in deduced contexts. This macro expands to nothing on those compilers, and typename elsewhere. For - example, replace:
template  void f(T, typename T::type);
+ example, replace:
template <class T> void f(T, typename T::type);

with:

-
template  void f(T, BOOST_DEDUCED_TYPENAME T::type);
+
template <class T> void f(T, BOOST_DEDUCED_TYPENAME T::type);
+ + BOOST_STD_EXTENSION_NAMESPACE + The namespace used for std library extensions (hashtable + classes etc). + BOOST_STATIC_CONSTANT(Type, assignment)