diff options
Diffstat (limited to 'src/qml/compiler/qv4compilercontext_p.h')
-rw-r--r-- | src/qml/compiler/qv4compilercontext_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4compilercontext_p.h b/src/qml/compiler/qv4compilercontext_p.h index 796f313b5c..b796a5f149 100644 --- a/src/qml/compiler/qv4compilercontext_p.h +++ b/src/qml/compiler/qv4compilercontext_p.h @@ -52,6 +52,7 @@ #include "private/qv4global_p.h" #include <private/qqmljsast_p.h> +#include <private/qv4compileddata_p.h> #include <QtCore/QStringList> #include <QtCore/QDateTime> #include <QtCore/QStack> @@ -133,7 +134,7 @@ struct Context { ControlFlow *controlFlow = 0; QByteArray code; - QVector<int> lineNumberMapping; + QVector<CompiledData::CodeOffsetToLine> lineNumberMapping; int maxNumberOfArguments = 0; bool hasDirectEval = false; |