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.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/common/artifact.hpp b/src/buildtool/common/artifact.hpp
index a933433e..1ef169d3 100644
--- a/src/buildtool/common/artifact.hpp
+++ b/src/buildtool/common/artifact.hpp
@@ -64,7 +64,7 @@ class Artifact {
// Create JSON of the form '{"id": "hash", "size": x, "file_type": "f"}'
// As the failed property is only internal to a run, discard it.
- [[nodiscard]] auto ToJson() const noexcept -> nlohmann::json {
+ [[nodiscard]] auto ToJson() const -> nlohmann::json {
return {{"id", digest.hash()},
{"size", digest.size()},
{"file_type", std::string{ToChar(type)}}};