diff options
Diffstat (limited to 'test/buildtool/file_system/file_system_manager.test.cpp')
-rw-r--r-- | test/buildtool/file_system/file_system_manager.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/file_system/file_system_manager.test.cpp b/test/buildtool/file_system/file_system_manager.test.cpp index 4ddb65e2..607e3dd2 100644 --- a/test/buildtool/file_system/file_system_manager.test.cpp +++ b/test/buildtool/file_system/file_system_manager.test.cpp @@ -16,7 +16,7 @@ class CopyFileFixture { CopyFileFixture(CopyFileFixture&&) = delete; ~CopyFileFixture() noexcept { CHECK(std::filesystem::remove(to_)); } auto operator=(CopyFileFixture const&) -> CopyFileFixture& = delete; - auto operator=(CopyFileFixture &&) -> CopyFileFixture& = delete; + auto operator=(CopyFileFixture&&) -> CopyFileFixture& = delete; std::filesystem::path const from_{ "test/buildtool/file_system/data/example_file"}; @@ -32,7 +32,7 @@ class WriteFileFixture { WriteFileFixture(WriteFileFixture&&) = delete; ~WriteFileFixture() noexcept { CHECK(std::filesystem::remove(file_path_)); } auto operator=(WriteFileFixture const&) -> WriteFileFixture& = delete; - auto operator=(WriteFileFixture &&) -> WriteFileFixture& = delete; + auto operator=(WriteFileFixture&&) -> WriteFileFixture& = delete; std::filesystem::path const relative_path_parent_{ GENERATE(as<std::filesystem::path>{}, |