diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-08-13 22:26:53 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-08-13 22:26:53 +0000 |
commit | 5be15377088ab783c0bf1a777a75bff627d35ffe (patch) | |
tree | 3738214e3c4b31552f86989e1c1bb536dfb30e47 /test/FixIt | |
parent | d1cebef95412e885e43d92beaf3d2233e5a79b7b (diff) | |
download | clang-5be15377088ab783c0bf1a777a75bff627d35ffe.tar.gz |
Replace remaining user-visible mentions of C++1z with C++17.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@310804 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FixIt')
-rw-r--r-- | test/FixIt/fixit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FixIt/fixit.cpp b/test/FixIt/fixit.cpp index 0b7fc626ff..92c561a20a 100644 --- a/test/FixIt/fixit.cpp +++ b/test/FixIt/fixit.cpp @@ -216,7 +216,7 @@ template<class T> typedef Mystery<T>::type getMysteriousThing() { // \ } template<template<typename> Foo, // expected-error {{template template parameter requires 'class' after the parameter list}} - template<typename> typename Bar, // expected-warning {{template template parameter using 'typename' is a C++1z extension}} + template<typename> typename Bar, // expected-warning {{template template parameter using 'typename' is a C++17 extension}} template<typename> struct Baz> // expected-error {{template template parameter requires 'class' after the parameter list}} void func(); |