summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFMatrix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFMatrix.cc')
-rw-r--r--libqpdf/QPDFMatrix.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/libqpdf/QPDFMatrix.cc b/libqpdf/QPDFMatrix.cc
index 9fb24888..a54b4370 100644
--- a/libqpdf/QPDFMatrix.cc
+++ b/libqpdf/QPDFMatrix.cc
@@ -13,8 +13,7 @@ QPDFMatrix::QPDFMatrix() :
{
}
-QPDFMatrix::QPDFMatrix(
- double a, double b, double c, double d, double e, double f) :
+QPDFMatrix::QPDFMatrix(double a, double b, double c, double d, double e, double f) :
a(a),
b(b),
c(c),
@@ -136,6 +135,6 @@ bool
QPDFMatrix::operator==(QPDFMatrix const& rhs) const
{
return (
- (this->a == rhs.a) && (this->b == rhs.b) && (this->c == rhs.c) &&
- (this->d == rhs.d) && (this->e == rhs.e) && (this->f == rhs.f));
+ (this->a == rhs.a) && (this->b == rhs.b) && (this->c == rhs.c) && (this->d == rhs.d) &&
+ (this->e == rhs.e) && (this->f == rhs.f));
}