From 5aa0558a807d46b4b69982e87e64d548fa69889d Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 19 Sep 2025 07:09:54 -0500 Subject: [PATCH] fix using --- .../repertory_test/include/fixtures/drive_fixture.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/repertory/repertory_test/include/fixtures/drive_fixture.hpp b/repertory/repertory_test/include/fixtures/drive_fixture.hpp index 59bb979a..c6700671 100644 --- a/repertory/repertory_test/include/fixtures/drive_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/drive_fixture.hpp @@ -534,10 +534,10 @@ using platform_provider_types = remote_s3_encryption, remote_s3_legacy_encryption, local_sia, remote_sia>; #if defined(_WIN32) -using winfsp_test = drive_fixture; -#else -using fuse_test = drive_fixture; -#endif +template using winfsp_test = drive_fixture; +#else // !defined(_WIN32) +template using fuse_test = drive_fixture; +#endif // defined(_WIN32) } // namespace repertory #endif // REPERTORY_TEST_INCLUDE_FIXTURES_DRIVE_FIXTURE_HPP