From 383a8b209424025c1dfa1f370758bd1e9ddb16ea Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 26 Mar 2009 18:19:33 +0000 Subject: [PATCH] Added configuration macros BOOST_NO_AUTO_DECLARATIONS and BOOST_NO_AUTO_MULTIDECLARATIONS (take two). The C++0x features were disabled for MSVC 2010 as it is too far from release now. The macros are also defined for Borland and Codegear as these features are not announced in the release notes. [SVN r51990] --- doc/macro_reference.qbk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index 17dcf597..9ef6402f 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -524,6 +524,12 @@ that are not yet supported by a particular compiler. [table [[Macro ][Description ]] +[[`BOOST_NO_AUTO_DECLARATIONS`][The compiler does not support +type deduction for variables declared with the `auto` keyword (`auto var = ...;`). +]] +[[`BOOST_NO_AUTO_MULTIDECLARATIONS`][The compiler does not support +type deduction for multiple variables declared with the `auto` keyword (`auto var = ..., *ptr = ...;`). +]] [[`BOOST_NO_CHAR16_T`][The compiler does not support type `char16_t`. ]]