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 | b41e2d92982b1f3f1961db479a9d2a8801f71477 (patch) | |
tree | 2a4b93f30dc676a691b6c917fff5d4a0bccce959 /clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp | |
parent | ef81e9e243807af281190179267d7a56ea28535c (diff) | |
download | bcm5719-llvm-b41e2d92982b1f3f1961db479a9d2a8801f71477.tar.gz bcm5719-llvm-b41e2d92982b1f3f1961db479a9d2a8801f71477.zip |
Variadic templates example: a nearly-complete implementation of a TR1
function class template.
llvm-svn: 123024
Diffstat (limited to 'clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp')
-rw-r--r-- | clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp b/clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp index 1652bc59551..ff8dfda7686 100644 --- a/clang/test/CXX/temp/temp.decls/temp.variadic/example-tuple.cpp +++ b/clang/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> |