mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
Merge pull request #692 from michael-loki/fs_path_constructor
Add missing cppbackport fs::path constructor
This commit is contained in:
commit
b63893de9d
5
vendor/cppbackport-master/lib/fs/path.h
vendored
5
vendor/cppbackport-master/lib/fs/path.h
vendored
@ -63,6 +63,11 @@ public:
|
|||||||
|
|
||||||
path(const char*);
|
path(const char*);
|
||||||
|
|
||||||
|
template< typename Iterator >
|
||||||
|
path(Iterator first, Iterator last) : s(first, last)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/// Copy constructor
|
/// Copy constructor
|
||||||
path(const path&);
|
path(const path&);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user