diff options
author | Larisse Voufo <lvoufo@google.com> | 2013-08-23 22:21:36 +0000 |
---|---|---|
committer | Larisse Voufo <lvoufo@google.com> | 2013-08-23 22:21:36 +0000 |
commit | 30616383ab4d784f51c8e4228d2c01c772b9838c (patch) | |
tree | 5b6fdab1b0d5dbe70ff553eaafeba8388abaea37 /clang/lib/AST/DeclTemplate.cpp | |
parent | d07c6f06ebfb0506a9442901a07703bbe3f996a1 (diff) | |
download | bcm5719-llvm-30616383ab4d784f51c8e4228d2c01c772b9838c.tar.gz bcm5719-llvm-30616383ab4d784f51c8e4228d2c01c772b9838c.zip |
A clean-up pass, exploring the unification of traversals of class, variable and function templates.
llvm-svn: 189152
Diffstat (limited to 'clang/lib/AST/DeclTemplate.cpp')
-rw-r--r-- | clang/lib/AST/DeclTemplate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/DeclTemplate.cpp b/clang/lib/AST/DeclTemplate.cpp index 52e35c6752d..94f05e9c2f7 100644 --- a/clang/lib/AST/DeclTemplate.cpp +++ b/clang/lib/AST/DeclTemplate.cpp @@ -984,8 +984,8 @@ VarTemplateDecl *VarTemplateDecl::CreateDeserialized(ASTContext &C, return new (Mem) VarTemplateDecl(EmptyShell()); } -// FIXME: Should this be unified accross class, function and variable -// templates? Perhaps also moved to RedeclarableTemplateDecl? +// TODO: Unify accross class, function and variable templates? +// May require moving this and Common to RedeclarableTemplateDecl. void VarTemplateDecl::LoadLazySpecializations() const { Common *CommonPtr = getCommonPtr(); if (CommonPtr->LazySpecializations) { |