Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/coding
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2019-03-11 16:51:05 +0300
committerMaksim Andrianov <maksimandrianov1@gmail.com>2019-03-11 18:30:42 +0300
commitc87cb978e62f1eb4850639abb299aba46d2e13f5 (patch)
tree3812afa8dc4084784dc350df1ca67f2c8d2d0729 /coding
parentc1d4305454b1115fabca3e8f86ad80e0fce4f8e0 (diff)
Several explicit constructors per the Cppcheck report.
Diffstat (limited to 'coding')
-rw-r--r--coding/coding_tests/file_container_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/coding/coding_tests/file_container_test.cpp b/coding/coding_tests/file_container_test.cpp
index 6ffbdb4f60..2eb64205df 100644
--- a/coding/coding_tests/file_container_test.cpp
+++ b/coding/coding_tests/file_container_test.cpp
@@ -240,7 +240,7 @@ UNIT_TEST(FilesMappingContainer_MoveHandle)
class HandleWrapper
{
public:
- HandleWrapper(FilesMappingContainer::Handle && handle) : m_handle(std::move(handle))
+ explicit HandleWrapper(FilesMappingContainer::Handle && handle) : m_handle(std::move(handle))
{
TEST(m_handle.IsValid(), ());
}