forked from qt-creator/qt-creator
Use the document in the snapshot when available.
This commit is contained in:
@@ -42,10 +42,10 @@
|
||||
|
||||
using namespace CPlusPlus;
|
||||
|
||||
CheckUndefinedSymbols::CheckUndefinedSymbols(Document::Ptr doc, const Snapshot &snapshot)
|
||||
: ASTVisitor(doc->translationUnit()), _context(doc, snapshot)
|
||||
CheckUndefinedSymbols::CheckUndefinedSymbols(TranslationUnit *unit, const LookupContext &context)
|
||||
: ASTVisitor(unit), _context(context)
|
||||
{
|
||||
_fileName = doc->fileName();
|
||||
_fileName = context.thisDocument()->fileName();
|
||||
}
|
||||
|
||||
CheckUndefinedSymbols::~CheckUndefinedSymbols()
|
||||
|
Reference in New Issue
Block a user