summaryrefslogtreecommitdiff
path: root/src/buildtool/common/artifact_blob.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/common/artifact_blob.hpp')
-rw-r--r--src/buildtool/common/artifact_blob.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/buildtool/common/artifact_blob.hpp b/src/buildtool/common/artifact_blob.hpp
index 42a7778c..800b78c1 100644
--- a/src/buildtool/common/artifact_blob.hpp
+++ b/src/buildtool/common/artifact_blob.hpp
@@ -29,13 +29,6 @@
class ArtifactBlob final {
public:
- explicit ArtifactBlob(ArtifactDigest digest,
- std::string content,
- bool is_exec) noexcept
- : digest_{std::move(digest)},
- content_{std::make_shared<std::string const>(std::move(content))},
- is_executable_{is_exec} {}
-
/// \brief Create ArtifactBlob and keep the given content in memory. The
/// content is hashed based on the given hash function and ObjectType.
/// \param hash_function Hash function that must be used for hashing.