diff options
| author | Lars Knoll <lars.knoll@qt.io> | 2017-08-09 17:14:11 +0200 |
|---|---|---|
| committer | Lars Knoll <lars.knoll@qt.io> | 2017-08-10 08:20:15 +0000 |
| commit | 4acb72bf35e736f222c90e49b3e84e20355d33a7 (patch) | |
| tree | 47980e17c8d9b0d7349fe0291872c1e4d7663ecc /src/qml/compiler/qv4codegen.cpp | |
| parent | b459c43c5d119507f888ac9ab1ca96f8e7bb6e34 (diff) | |
Cleanup naming of Stack frame structures
Change-Id: I0b392040b6726e6d93f237ccccc9f053256ed819
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4codegen.cpp')
| -rw-r--r-- | src/qml/compiler/qv4codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4codegen.cpp b/src/qml/compiler/qv4codegen.cpp index eee9d05d52..4fb34a677f 100644 --- a/src/qml/compiler/qv4codegen.cpp +++ b/src/qml/compiler/qv4codegen.cpp @@ -1795,7 +1795,7 @@ int Codegen::defineFunction(const QString &name, AST::Node *ast, bytecodeGenerator = &bytecode; // allocate the js stack frame (Context & js Function & accumulator) - bytecodeGenerator->newRegisterArray(sizeof(EngineBase::JSStackFrame)/sizeof(Value)); + bytecodeGenerator->newRegisterArray(sizeof(JSStackFrame)/sizeof(Value)); int returnAddress = bytecodeGenerator->newRegister(); |
