diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-24 06:25:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-24 06:25:27 +0000 |
commit | d162584991885ab004a02573a73ce06422b921fc (patch) | |
tree | 0d8c56d85205a22c6c06b712a468afcd10429c4b /lib/Sema/SemaInit.cpp | |
parent | d9d22dd9c94618490dbffb0e2caf222530ca39d3 (diff) |
Change a whole lot of diagnostics to take QualType's directly
instead of converting them to strings first. This also fixes a
bunch of minor inconsistencies in the diagnostics emitted by clang
and adds a bunch of FIXME's to DiagnosticKinds.def.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59948 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInit.cpp')
-rw-r--r-- | lib/Sema/SemaInit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp index 1e26c84714..42f9b14085 100644 --- a/lib/Sema/SemaInit.cpp +++ b/lib/Sema/SemaInit.cpp @@ -144,7 +144,7 @@ void InitListChecker::CheckListElementTypes(InitListExpr *IList, // This type is invalid, issue a diagnostic. Index++; SemaRef->Diag(IList->getLocStart(), diag::err_illegal_initializer_type) - << DeclType.getAsString(); + << DeclType; hadError = true; } else { // In C, all types are either scalars or aggregates, but |