Skip to content

Commit e3fcbec

Browse files
authored
Merge pull request #860 from Sonic-Amiga/build-fix
[HOTFIX] lib/vfs: Fix build error
2 parents 5e3e672 + 5f3db01 commit e3fcbec

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

lib/vfs/vfs.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Path::Path(const std::vector<std::string> other):
2323
{
2424
}
2525

26+
Path::Path(const std::vector<std::string>::const_iterator& begin, const std::vector<std::string>::const_iterator& end):
27+
std::vector<std::string>(begin, end)
28+
{
29+
}
30+
2631
Path::Path(const std::string& path)
2732
{
2833
if (path == "")

0 commit comments

Comments
 (0)