mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Bugfix: LLVM compiler warnings
This commit is contained in:
@ -672,8 +672,8 @@ void PDFParsingContext::endParsingObject(PDFObjectReference reference)
|
||||
|
||||
PDFParser::PDFParser(const QByteArray& data, PDFParsingContext* context, Features features) :
|
||||
m_context(context),
|
||||
m_lexicalAnalyzer(data.constData(), data.constData() + data.size()),
|
||||
m_features(features)
|
||||
m_features(features),
|
||||
m_lexicalAnalyzer(data.constData(), data.constData() + data.size())
|
||||
{
|
||||
m_lookAhead1 = fetch();
|
||||
m_lookAhead2 = fetch();
|
||||
@ -681,8 +681,8 @@ PDFParser::PDFParser(const QByteArray& data, PDFParsingContext* context, Feature
|
||||
|
||||
PDFParser::PDFParser(const char* begin, const char* end, PDFParsingContext* context, Features features) :
|
||||
m_context(context),
|
||||
m_lexicalAnalyzer(begin, end),
|
||||
m_features(features)
|
||||
m_features(features),
|
||||
m_lexicalAnalyzer(begin, end)
|
||||
{
|
||||
m_lookAhead1 = fetch();
|
||||
m_lookAhead2 = fetch();
|
||||
@ -691,8 +691,8 @@ PDFParser::PDFParser(const char* begin, const char* end, PDFParsingContext* cont
|
||||
PDFParser::PDFParser(std::function<PDFLexicalAnalyzer::Token ()> tokenFetcher) :
|
||||
m_tokenFetcher(qMove(tokenFetcher)),
|
||||
m_context(nullptr),
|
||||
m_lexicalAnalyzer(nullptr, nullptr),
|
||||
m_features(None)
|
||||
m_features(None),
|
||||
m_lexicalAnalyzer(nullptr, nullptr)
|
||||
{
|
||||
m_lookAhead1 = fetch();
|
||||
m_lookAhead2 = fetch();
|
||||
|
Reference in New Issue
Block a user