diff options
author | Abramo Bagnara <abramo.bagnara@gmail.com> | 2011-11-18 08:08:52 +0000 |
---|---|---|
committer | Abramo Bagnara <abramo.bagnara@gmail.com> | 2011-11-18 08:08:52 +0000 |
commit | e994624c001143ee2b8a7a4715aaad5efcd71f18 (patch) | |
tree | 7aef89921d4ce793df22783cada482ab73b0d041 /lib/Sema/SemaTemplateInstantiateDecl.cpp | |
parent | 8a0c5c2ec5c5496cfb01d2c86bd50991866a7356 (diff) |
Fixed implicit instantiations source range.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplateInstantiateDecl.cpp')
-rw-r--r-- | lib/Sema/SemaTemplateInstantiateDecl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Sema/SemaTemplateInstantiateDecl.cpp b/lib/Sema/SemaTemplateInstantiateDecl.cpp index 865d62e14b..c20033bbc2 100644 --- a/lib/Sema/SemaTemplateInstantiateDecl.cpp +++ b/lib/Sema/SemaTemplateInstantiateDecl.cpp @@ -2478,6 +2478,9 @@ void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, if (Inst) return; + // Copy the inner loc start from the pattern. + Function->setInnerLocStart(PatternDecl->getInnerLocStart()); + // If we're performing recursive template instantiation, create our own // queue of pending implicit instantiations that we will instantiate later, // while we're still within our own instantiation context. |