Merge pull request #692 from michael-loki/fs_path_constructor

Add missing cppbackport fs::path constructor
This commit is contained in:
michael-loki 2019-07-11 09:59:11 +01:00 committed by GitHub
commit b63893de9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,11 @@ public:
path(const char*);
template< typename Iterator >
path(Iterator first, Iterator last) : s(first, last)
{
}
/// Copy constructor
path(const path&);