diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-04-04 11:16:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-04-04 11:16:06 +0100 |
commit | 6b2d75f966140746e4fed4c0dd43a452e0cfdbae (patch) | |
tree | 0a962ec811c886a79e6542af813e074810274038 /dbaccess/source | |
parent | 03d3506286eca8140e17b8473b9f33fa02da4f0c (diff) |
cppcheck: noExplicitConstructor
Change-Id: I68310e2abc8f0ca114adb2b52f82157a0f455202
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/core/api/RowSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx index 0e058ac78b0e..1016977dfea9 100644 --- a/dbaccess/source/core/api/RowSet.cxx +++ b/dbaccess/source/core/api/RowSet.cxx @@ -868,7 +868,7 @@ namespace { bool& m_rInsertingRow; public: - ProtectFlag(bool& rInsertingRow) + explicit ProtectFlag(bool& rInsertingRow) : m_rInsertingRow(rInsertingRow) { if (m_rInsertingRow) |