Skip to content

Commit

Permalink
Merge branch 'main' into private-constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
bugdea1er authored Oct 3, 2024
2 parents d07c5b7 + b088821 commit fdf778f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ void remove(const fs::path& path) noexcept {
}
} // namespace

entry::entry(std::pair<fs::path, native_handle_type> handle)
: entry(std::move(handle.first), handle.second) {}

entry::entry(fs::path path, native_handle_type handle)
: pathobject(std::move(path)),
handle(handle) {}
Expand Down

0 comments on commit fdf778f

Please sign in to comment.