fix
Some checks reported errors
BlockStorage/repertory_mac/pipeline/head Something is wrong with the build of this commit
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2025-08-05 15:01:56 -05:00
parent 21fc375ce0
commit 84794ce862
2 changed files with 8 additions and 3 deletions

View File

@@ -102,7 +102,10 @@ public:
auto Init(PVOID host) -> NTSTATUS override;
[[nodiscard]] auto mount(const std::vector<std::string> &drive_args) -> int;
[[nodiscard]] auto mount(std::vector<std::string> orig_args,
std::vector<std::string> drive_args,
provider_type prov, std::string_view unique_id)
-> int;
auto Mounted(PVOID host) -> NTSTATUS override;

View File

@@ -245,8 +245,10 @@ auto remote_winfsp_drive::Init(PVOID host) -> NTSTATUS {
return STATUS_SUCCESS;
}
auto remote_winfsp_drive::mount(const std::vector<std::string> &drive_args)
-> int {
auto remote_winfsp_drive::mount(std::vector<std::string> /* orig_args */,
std::vector<std::string> drive_args,
provider_type /* prov */,
std::string_view /* unique_id */) -> int {
REPERTORY_USES_FUNCTION_NAME();
std::vector<std::string> parsed_drive_args;