summaryrefslogtreecommitdiffstats
path: root/src/render/io/gltfparser.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2015-06-05 21:46:00 +0200
committerSean Harmer <sean.harmer@kdab.com>2015-06-11 19:27:47 +0000
commitaf5079012292ea13586bc72605c30321a7c72662 (patch)
tree567c4794de052f84296fe5d2d35f8bc9d2084ec5 /src/render/io/gltfparser.cpp
parentfc662e5a4597b568561c3a19abb24151086a229d (diff)
Add semicolon to Q_UNUSED expressions
It compiles without, apparently, but it throws off QtCreator's parser, at least. Change-Id: I69939cdb3c28f39458488190b1169c152a339ccf Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/render/io/gltfparser.cpp')
-rw-r--r--src/render/io/gltfparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/io/gltfparser.cpp b/src/render/io/gltfparser.cpp
index 68aa14826..745180e56 100644
--- a/src/render/io/gltfparser.cpp
+++ b/src/render/io/gltfparser.cpp
@@ -788,8 +788,8 @@ void GLTFParser::processJSONImage( QString id, QJsonObject jsonObj)
void GLTFParser::processJSONTexture( QString id, QJsonObject jsonObj)
{
- Q_UNUSED(id)
- Q_UNUSED(jsonObj)
+ Q_UNUSED(id);
+ Q_UNUSED(jsonObj);
// int target = jsonObj.value(KEY_TARGET).toInt();
// QAbstractTextureProvider* tex = new QAbstractTextureProvider(static_cast<QAbstractTextureProvider::Target>(target));