diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-04-07 15:28:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:54 (GMT) |
commit | 750dfee29c3f45020e8fcff91499a2542913b649 (patch) | |
tree | ebe197a7b03dd37cf8e2af31c16a57772a259a70 /Source/cmMakefile.cxx | |
parent | 9eaf3755987821080908a289cefbf546773071f9 (diff) | |
download | CMake-750dfee29c3f45020e8fcff91499a2542913b649.zip CMake-750dfee29c3f45020e8fcff91499a2542913b649.tar.gz CMake-750dfee29c3f45020e8fcff91499a2542913b649.tar.bz2 |
Features: Add cxx_delegating_constructors.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 5004a08..de6b972 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -42,7 +42,8 @@ #include <assert.h> #define FOR_EACH_CXX_FEATURE(F) \ - F(cxx_auto_type) + F(cxx_auto_type) \ + F(cxx_delegating_constructors) class cmMakefile::Internals { |