fs/Path: make constructor `explicit`

This commit is contained in:
Max Kellermann 2020-03-13 19:55:25 +01:00
parent 1d560c8f0f
commit b6b15afb5a
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class Path : public PathTraitsFS::Pointer {
using Traits = PathTraitsFS;
using Base = Traits::Pointer;
constexpr Path(const_pointer _value) noexcept:Base(_value) {}
explicit constexpr Path(const_pointer _value) noexcept:Base(_value) {}
public:
/**