diff --git a/microsoft_vcpp.html b/microsoft_vcpp.html index 61cb268..7b35f44 100644 --- a/microsoft_vcpp.html +++ b/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