diff --git a/src/fs/AllocatedPath.hxx b/src/fs/AllocatedPath.hxx index 2aa2fc2a9..5d27e2ddc 100644 --- a/src/fs/AllocatedPath.hxx +++ b/src/fs/AllocatedPath.hxx @@ -46,7 +46,7 @@ class AllocatedPath { string value; AllocatedPath(std::nullptr_t):value() {} - AllocatedPath(const_pointer_type _value):value(_value) {} + explicit AllocatedPath(const_pointer_type _value):value(_value) {} AllocatedPath(string &&_value):value(std::move(_value)) {}