diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-01-07 19:56:20 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-01-07 19:56:20 +0000 |
commit | e8bbf98ba4a388d89d1b4da9e15aabedf8eb53a6 (patch) | |
tree | 4702abe9fa9d6c96ab8694d0c531545d82765baa /test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp | |
parent | 9ce5270f0aadaaf03a0cf705787f42ce9eb1194c (diff) |
Variadic templates example: a nearly-complete implementation of a TR1
function class template.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp')
-rw-r--r-- | test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp b/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp index 1652bc5955..ff8dfda768 100644 --- a/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp +++ b/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s // Example tuple implementation from the variadic templates proposal, -// ISO C++ committee document nmber N2080. +// ISO C++ committee document number N2080. // Helper type traits template<typename T> |