diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-08-04 16:50:30 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-08-04 16:50:30 +0000 |
commit | 577f75a7498e9e2536434da0ef0da0eea390d18b (patch) | |
tree | ba00c979cb2b9d6bd32d3c37088b66ee034f3704 /lib/Sema/SemaTemplate.cpp | |
parent | de9f2c937a4892d155cfe695657ce4cc3556836f (diff) |
Refactor template instantiation for types into a generic tree
transformation template (TreeTransform) that handles the
transformation and reconstruction of AST nodes. Template instantiation
for types is a (relatively small) customization of the generic tree
transformation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r-- | lib/Sema/SemaTemplate.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 1bcc8c37ec..32d6069d8d 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -1,12 +1,10 @@ //===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===/ - // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. //===----------------------------------------------------------------------===/ - // // This file implements semantic analysis for C++ templates. //===----------------------------------------------------------------------===/ |