summaryrefslogtreecommitdiff
path: root/src/linguist
diff options
context:
space:
mode:
authorØystein Heskestad <oystein.heskestad@qt.io>2022-09-09 14:55:15 +0200
committerØystein Heskestad <oystein.heskestad@qt.io>2022-09-09 17:46:38 +0200
commit65cb9a7c5444669d498aad2e2707b2a47b56f002 (patch)
treee3dc64df32874609fd7b71e26c8f2ba1001f391f /src/linguist
parentf90c985e54e74a3907bbef5b235c094412af46ea (diff)
downloadqttools-65cb9a7c5444669d498aad2e2707b2a47b56f002.tar.gz
lupdate: Fix spelling of Q_UNUSED macro and add semicolon
Pick-to: 6.4 Change-Id: I8d1165bf276e812c025cdd015d0f4bd656ca8b64 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'src/linguist')
-rw-r--r--src/linguist/lupdate/clangtoolastreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linguist/lupdate/clangtoolastreader.cpp b/src/linguist/lupdate/clangtoolastreader.cpp
index 2510212a7..d233235d7 100644
--- a/src/linguist/lupdate/clangtoolastreader.cpp
+++ b/src/linguist/lupdate/clangtoolastreader.cpp
@@ -437,7 +437,7 @@ void LupdateVisitor::processIsolatedComments(const clang::FileID file)
tmp.emplace_back(commentInFile.second);
clang::ArrayRef<clang::RawComment *> rawComments = tmp;
#else
- Q_UNSED(file)
+ Q_UNUSED(file);
clang::ArrayRef<clang::RawComment *> rawComments = m_context->getRawCommentList().getComments();
#endif