summaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-15 17:32:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-15 20:03:35 +0100
commitd6790de07ff225f9e5b58152d01719e5fbe9e6cd (patch)
treecd00ab904e893bf14670fd8c4d9efa58b02cb64b /store
parent15dfcb7f461893f83abcf28bfe01a4164209a160 (diff)
cppcheck: noExplicitConstructor
Change-Id: Id438b987f72ae57bd4fa882e01fba17d3fa5b95b
Diffstat (limited to 'store')
-rw-r--r--store/source/store.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/store.cxx b/store/source/store.cxx
index 22fc68f80511..04b9cc1c6666 100644
--- a/store/source/store.cxx
+++ b/store/source/store.cxx
@@ -41,7 +41,7 @@ template<class store_handle_type>
class OStoreHandle : public rtl::Reference<store_handle_type>
{
public:
- OStoreHandle (store_handle_type * pHandle)
+ explicit OStoreHandle (store_handle_type * pHandle)
: rtl::Reference<store_handle_type> (pHandle)
{}