aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-05-19 11:07:43 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-05-19 10:53:32 +0000
commitbf935a5359227066ac066b9e3d96bc48870bc4e7 (patch)
tree42c427e1cac63194066c6f88af9d4991f50c690b /src/qml/jsruntime/qv4engine.cpp
parent2cb2c8f9e12fe72bab6e0a627e34d89d9d2689b2 (diff)
Fix MSVC warning about unused variable
Change-Id: I9b2f21dd7cfc82a9da9aa3e4c60d47fa07fdceaf Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 33559d8e69..5e450859ec 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -1627,6 +1627,7 @@ void ExecutionEngine::assertObjectBelongsToEngine(const Value &v)
{
Q_UNUSED(v);
Q_ASSERT(!v.isObject() || v.objectValue()->engine() == this);
+ Q_UNUSED(v);
}
// Converts a JS value to a meta-type.