diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-07 08:14:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-07 08:14:34 +0200 |
commit | 46791546a8aaef40eafc08e6e71b4b0785324564 (patch) | |
tree | 149c1b3d002404366ed7a410af8e82f4b51778c3 /shell/source/unix/sysshell | |
parent | 6343754e310a589cb49e2a1da0cd68472571179d (diff) |
cppcheck:noExplicitConstructor
Change-Id: I940714e303b905b756ba077eeda6c41746bd421f
Diffstat (limited to 'shell/source/unix/sysshell')
-rw-r--r-- | shell/source/unix/sysshell/recently_used_file_handler.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx index 0beba20e52c0..6add8d488c2d 100644 --- a/shell/source/unix/sysshell/recently_used_file_handler.cxx +++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx @@ -215,7 +215,7 @@ namespace /* private */ { public i_xml_parser_event_handler, private boost::noncopyable { public: - recently_used_file_filter(recently_used_item_list_t& item_list) : + explicit recently_used_file_filter(recently_used_item_list_t& item_list) : item_(NULL), item_list_(item_list) { @@ -370,7 +370,7 @@ namespace /* private */ { class find_item_predicate { public: - find_item_predicate(const string_t& uri) : + explicit find_item_predicate(const string_t& uri) : uri_(uri) {} @@ -442,7 +442,7 @@ namespace /* private */ { struct cleanup_guard { - cleanup_guard(recently_used_item_list_t& item_list) : + explicit cleanup_guard(recently_used_item_list_t& item_list) : item_list_(item_list) {} ~cleanup_guard() |