diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-02-27 22:05:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-02-27 22:05:23 +0000 |
commit | 8c633a09ec67a9bef4bebb7dcb254b2b89e680fe (patch) | |
tree | f0835617b13b81f6922a6876d96892a2d23f686e /lib/Sema/SemaTemplateInstantiate.cpp | |
parent | 9b5e5059b2b7751caa2470a33c3ee8ccd3ff013f (diff) |
Fix a typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplateInstantiate.cpp')
-rw-r--r-- | lib/Sema/SemaTemplateInstantiate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaTemplateInstantiate.cpp b/lib/Sema/SemaTemplateInstantiate.cpp index e07892e6c1..1e7569a9b2 100644 --- a/lib/Sema/SemaTemplateInstantiate.cpp +++ b/lib/Sema/SemaTemplateInstantiate.cpp @@ -433,6 +433,6 @@ QualType Sema::InstantiateType(QualType T, #include "clang/AST/TypeNodes.def" } - assert(false && "Not all types hav been decided for template instantiation"); + assert(false && "Not all types have been decoded for instantiation"); return QualType(); } |