data: fixes for parsing and logging

* readded Storage logs
* turned type name resolver error logs to info logs
* fixed inheritance not parsed in forward declarations
* check file node id before saving source location
* show errors in unparsed files again
This commit is contained in:
Eberhard Graether
2015-09-24 02:39:10 +02:00
parent bb3a8bf351
commit c18bd6a8bc
7 changed files with 108 additions and 17 deletions
@@ -74,7 +74,8 @@ void CxxDiagnosticConsumer::HandleDiagnostic(clang::DiagnosticsEngine::Level lev
column = presumedLocation.getColumn();
}
if (m_fileManager->hasFilePath(filePath))
// if (m_fileManager->hasFilePath(filePath))
if (m_fileManager)
{
m_client->onError(ParseLocation(filePath, line, column), message);
}