summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-02 13:02:41 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-08 09:05:54 (GMT)
commit10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc (patch)
tree79380831c727bb6befad287ca4ca5bdd75bb3c2d /Source
parent750dfee29c3f45020e8fcff91499a2542913b649 (diff)
downloadCMake-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 'Source')
-rw-r--r--Source/cmMakefile.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index de6b972..52f4fb6 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -43,7 +43,8 @@
#define FOR_EACH_CXX_FEATURE(F) \
F(cxx_auto_type) \
- F(cxx_delegating_constructors)
+ F(cxx_delegating_constructors) \
+ F(cxx_variadic_templates)
class cmMakefile::Internals
{