diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/buildtool/build_engine/expression/linked_map.test.cpp | 2 | ||||
-rw-r--r-- | test/buildtool/file_system/file_system_manager.test.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/buildtool/build_engine/expression/linked_map.test.cpp b/test/buildtool/build_engine/expression/linked_map.test.cpp index b4546f0f..fbbd1b55 100644 --- a/test/buildtool/build_engine/expression/linked_map.test.cpp +++ b/test/buildtool/build_engine/expression/linked_map.test.cpp @@ -89,7 +89,7 @@ class CopyCounter { } return *this; } - auto operator=(CopyCounter &&) -> CopyCounter& = default; + auto operator=(CopyCounter&&) -> CopyCounter& = default; [[nodiscard]] auto Count() const -> std::size_t { return *count_; } private: 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>{}, |