diff options
Diffstat (limited to 'src/buildtool/execution_engine/dag/dag.hpp')
-rw-r--r-- | src/buildtool/execution_engine/dag/dag.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buildtool/execution_engine/dag/dag.hpp b/src/buildtool/execution_engine/dag/dag.hpp index cd75fde4..a479d8b6 100644 --- a/src/buildtool/execution_engine/dag/dag.hpp +++ b/src/buildtool/execution_engine/dag/dag.hpp @@ -178,13 +178,13 @@ class DependencyGraph : DirectedAcyclicGraph { class ArtifactNode; // Node identifier for actions - struct ActionNodeIdentifierTag : type_safe_arithmetic_tag<std::size_t> {}; - using ActionNodeIdentifier = type_safe_arithmetic<ActionNodeIdentifierTag>; + struct ActionNodeIdentifierTag : TypeSafeArithmeticTag<std::size_t> {}; + using ActionNodeIdentifier = TypeSafeArithmetic<ActionNodeIdentifierTag>; // Node identifier for artifacts - struct ArtifactNodeIdentifierTag : type_safe_arithmetic_tag<std::size_t> {}; + struct ArtifactNodeIdentifierTag : TypeSafeArithmeticTag<std::size_t> {}; using ArtifactNodeIdentifier = - type_safe_arithmetic<ArtifactNodeIdentifierTag>; + TypeSafeArithmetic<ArtifactNodeIdentifierTag>; /// \brief Class for traversal state data specific for ActionNode's /// Provides the following atomic operations (listed on the public methods): |