aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBitsOfBinaryData.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2020-02-02 18:14:27 +0100
committerLNJ <lnj@kaidan.im>2020-02-03 00:11:55 +0100
commit57f1b775197aed1d32e98b0299c0999339a7d5f6 (patch)
treece5702781e15f3a5c438ab153edf06f51a501b29 /src/base/QXmppBitsOfBinaryData.cpp
parent99b850a3008bbb03d3449d683adb87839f7d5c4b (diff)
Run clang-format also on all cpp files
Diffstat (limited to 'src/base/QXmppBitsOfBinaryData.cpp')
-rw-r--r--src/base/QXmppBitsOfBinaryData.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/base/QXmppBitsOfBinaryData.cpp b/src/base/QXmppBitsOfBinaryData.cpp
index 89c83cf6..dd69a763 100644
--- a/src/base/QXmppBitsOfBinaryData.cpp
+++ b/src/base/QXmppBitsOfBinaryData.cpp
@@ -161,8 +161,7 @@ void QXmppBitsOfBinaryData::toXmlElementFromChild(QXmlStreamWriter *writer) cons
bool QXmppBitsOfBinaryData::operator==(const QXmppBitsOfBinaryData &other) const
{
return d->cid == other.cid() &&
- d->maxAge == other.maxAge() &&
- d->contentType == other.contentType() &&
- d->data == other.data();
+ d->maxAge == other.maxAge() &&
+ d->contentType == other.contentType() &&
+ d->data == other.data();
}
-