Merge pull request #692 from michael-loki/fs_path_constructor

Add missing cppbackport fs::path constructor
pull/696/head
michael-loki 5 years ago committed by GitHub
commit b63893de9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save