diff options
Diffstat (limited to 'src/buildtool/execution_engine')
-rw-r--r-- | src/buildtool/execution_engine/dag/dag.hpp | 2 | ||||
-rw-r--r-- | src/buildtool/execution_engine/traverser/traverser.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/execution_engine/dag/dag.hpp b/src/buildtool/execution_engine/dag/dag.hpp index 171ea1d6..1a00f6a5 100644 --- a/src/buildtool/execution_engine/dag/dag.hpp +++ b/src/buildtool/execution_engine/dag/dag.hpp @@ -528,7 +528,7 @@ class DependencyGraph : DirectedAcyclicGraph { DependencyGraph() noexcept = default; - // DependencyGraph should not be copiable or movable. This could be changed + // DependencyGraph should not be copyable or movable. This could be changed // in the case we want to make the graph construction to be functional DependencyGraph(DependencyGraph const&) = delete; DependencyGraph(DependencyGraph&&) = delete; diff --git a/src/buildtool/execution_engine/traverser/traverser.hpp b/src/buildtool/execution_engine/traverser/traverser.hpp index 39852643..2567f3a4 100644 --- a/src/buildtool/execution_engine/traverser/traverser.hpp +++ b/src/buildtool/execution_engine/traverser/traverser.hpp @@ -66,7 +66,7 @@ class Traverser { // Traverse starting by the artifacts with the given identifiers, avoiding // executing actions that are not strictly needed to build the given - // artifacs + // artifacts [[nodiscard]] auto Traverse( std::unordered_set<ArtifactIdentifier> const& target_ids) noexcept -> bool; |