diff options
Diffstat (limited to 'libs/binder/Value.cpp')
-rw-r--r-- | libs/binder/Value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Value.cpp b/libs/binder/Value.cpp index a28a618939..19c57ba128 100644 --- a/libs/binder/Value.cpp +++ b/libs/binder/Value.cpp @@ -97,7 +97,7 @@ public: template<typename T> class Value::Content : public Value::ContentBase { public: Content() = default; - Content(const T & value) : mValue(value) { } + explicit Content(const T & value) : mValue(value) { } virtual ~Content() = default; |