Added configuration macros BOOST_NO_AUTO_DECLARATIONS and BOOST_NO_AUTO_MULTIDECLARATIONS.

[SVN r51992]
This commit is contained in:
Andrey Semashev
2009-03-26 19:00:00 +00:00
parent 52cb492090
commit 115746bced
24 changed files with 474 additions and 208 deletions

View File

@@ -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`.
]]