diff options
author | Lars Knoll <[email protected]> | 2015-02-12 21:16:42 +0100 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2015-03-02 16:34:16 +0000 |
commit | feebac8e705513d14f3d210541ee5127c2f2ff46 (patch) | |
tree | 1c3462f6f115359e1b50ba1d41bd58016e9036b3 /src/qml/jsruntime/qv4value.cpp | |
parent | 69fe583cbebcbd593cb0cee266ffc8b0b647235c (diff) |
Move memory management related functionality into it's own folder
Start moving the memory related functionality into it's own folder.
This will simplify refactoring of the GC related functionality later
on.
Change-Id: I70ec6f512af7a7897625afb84d914c17572b0ccd
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4value.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4value.cpp b/src/qml/jsruntime/qv4value.cpp index 68228f06bb..0ea4676f47 100644 --- a/src/qml/jsruntime/qv4value.cpp +++ b/src/qml/jsruntime/qv4value.cpp @@ -35,7 +35,7 @@ #ifndef V4_BOOTSTRAP #include <qv4object_p.h> #include <qv4objectproto_p.h> -#include "qv4mm_p.h" +#include <private/qv4mm_p.h> #endif #include <wtf/MathExtras.h> |