aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4mm_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-10-15 22:27:10 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-19 14:59:02 +0200
commitf0eaaef4aeb6fa8951cca1e1e90def3411896e9f (patch)
treea294933a656a8bdf2b70703b3caa1f450dba0e53 /src/qml/jsruntime/qv4mm_p.h
parent436b8397ca23a85cf15884655895901f4537a467 (diff)
Some minor optimizations
Change-Id: Ib2e08e7c89ca59a48f8fd52b30981e5d7e60803b Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4mm_p.h')
-rw-r--r--src/qml/jsruntime/qv4mm_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4mm_p.h b/src/qml/jsruntime/qv4mm_p.h
index abbc0a7b4e..95f49545b8 100644
--- a/src/qml/jsruntime/qv4mm_p.h
+++ b/src/qml/jsruntime/qv4mm_p.h
@@ -132,8 +132,8 @@ private:
void collectFromStack() const;
void collectFromJSStack() const;
void mark();
- std::size_t sweep(bool lastSweep = false);
- std::size_t sweep(char *chunkStart, std::size_t chunkSize, size_t size, GCDeletable **deletable);
+ void sweep(bool lastSweep = false);
+ void sweep(char *chunkStart, std::size_t chunkSize, size_t size, GCDeletable **deletable);
protected:
QScopedPointer<Data> m_d;