summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qbitarray.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qbitarray.h')
-rw-r--r--src/corelib/tools/qbitarray.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qbitarray.h b/src/corelib/tools/qbitarray.h
index aa9c9620fc7..133f829142c 100644
--- a/src/corelib/tools/qbitarray.h
+++ b/src/corelib/tools/qbitarray.h
@@ -99,8 +99,8 @@ public:
QBitArray& operator^=(const QBitArray &);
QBitArray operator~() const;
- inline bool operator==(const QBitArray& a) const { return d == a.d; }
- inline bool operator!=(const QBitArray& a) const { return d != a.d; }
+ inline bool operator==(const QBitArray& other) const { return d == other.d; }
+ inline bool operator!=(const QBitArray& other) const { return d != other.d; }
inline bool fill(bool val, int size = -1);
void fill(bool val, int first, int last);