diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-23 11:31:04 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-23 19:30:21 +0100 |
commit | 45cba2778426601bdffbcfe6aa7310aee76a6e54 (patch) | |
tree | e67b6b73bc7d4d9940fee3d1d324e4513c5dcbbe /test/buildtool/file_system/file_system_manager.test.cpp | |
parent | 4f6f3fcfaf4f2d99cf9c8f73fe93fd7bfa54c92a (diff) | |
download | justbuild-45cba2778426601bdffbcfe6aa7310aee76a6e54.tar.gz |
Apply changes suggested by clang-format 11
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>{}, |