diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-02 13:02:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:54 (GMT) |
commit | 10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc (patch) | |
tree | 79380831c727bb6befad287ca4ca5bdd75bb3c2d /Help/variable | |
parent | 750dfee29c3f45020e8fcff91499a2542913b649 (diff) | |
download | CMake-10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc.zip CMake-10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc.tar.gz CMake-10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc.tar.bz2 |
Features: Add cxx_variadic_templates.
Expect cxx_variadic_templates to implement N2555.
N2555 is essentially a bugfix and predates most compiler releases which
aimed to experimentally support variadic templates.
Diffstat (limited to 'Help/variable')
-rw-r--r-- | Help/variable/CMAKE_CXX_KNOWN_FEATURES.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_CXX_KNOWN_FEATURES.rst b/Help/variable/CMAKE_CXX_KNOWN_FEATURES.rst index 957c763..b6b2b35 100644 --- a/Help/variable/CMAKE_CXX_KNOWN_FEATURES.rst +++ b/Help/variable/CMAKE_CXX_KNOWN_FEATURES.rst @@ -21,3 +21,8 @@ The features known to this version of CMake are: Delegating constructors, as defined in N1986_. .. _N1986: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1986.pdf + +``cxx_variadic_templates`` + Variadic templates, as defined in N2242_. + + .. _N2242: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf |