summaryrefslogtreecommitdiff
path: root/src/buildtool/common/artifact.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/common/artifact.hpp')
-rw-r--r--src/buildtool/common/artifact.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/buildtool/common/artifact.hpp b/src/buildtool/common/artifact.hpp
index 07c508c2..6fcde282 100644
--- a/src/buildtool/common/artifact.hpp
+++ b/src/buildtool/common/artifact.hpp
@@ -114,16 +114,6 @@ class Artifact {
explicit Artifact(ArtifactIdentifier id) noexcept : id_{std::move(id)} {}
- Artifact(Artifact const& other) noexcept
- : id_{other.id_}, file_path_{other.file_path_}, repo_{other.repo_} {
- object_info_ = other.object_info_;
- }
-
- Artifact(Artifact&&) noexcept = default;
- ~Artifact() noexcept = default;
- auto operator=(Artifact const&) noexcept -> Artifact& = delete;
- auto operator=(Artifact&&) noexcept -> Artifact& = default;
-
[[nodiscard]] auto Id() const& noexcept -> ArtifactIdentifier const& {
return id_;
}