From 2059e13b56fcfb99fb19e77d806a0b8ea2d2e563 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Fri, 2 Feb 2001 22:16:23 +0000 Subject: [PATCH] English fixes wchar_t is a typedef in [SVN r8884] --- more/microsoft_vcpp.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/more/microsoft_vcpp.html b/more/microsoft_vcpp.html index 61cb2688a2..7b35f44ad4 100644 --- a/more/microsoft_vcpp.html +++ b/more/microsoft_vcpp.html @@ -107,7 +107,7 @@ int main() The scope of variable definitions in for loops should be local to the loop's body, but it is instead local to the enclosing -block: +block.
@@ -142,7 +142,7 @@ struct A
 

[koenig-lookup] Argument-dependent lookup

Argument-dependent lookup, also called Koenig lookup, does not work. -No additional namespace induced from the argument types seem to be +No additional namespaces induced from the argument types seem to be considered.
@@ -241,6 +241,14 @@ The type wchar_t is not a built-in type.
 wchar_t x;  // "missing storage class or type identifier"
 
+Workaround: The header <cstddef> +provides a typedef for wchar_t and +boost/config.hpp +includes it to provide the workaround. Note that this is not a +distinct type from any other built-in type as required by the +standard, so ambiguities when overloading on wchar_t may +emanate. +

Standard Library