summaryrefslogtreecommitdiff
path: root/src/buildtool/common/remote/port.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/common/remote/port.hpp')
-rw-r--r--src/buildtool/common/remote/port.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/common/remote/port.hpp b/src/buildtool/common/remote/port.hpp
index 161d8c3b..01d28e8d 100644
--- a/src/buildtool/common/remote/port.hpp
+++ b/src/buildtool/common/remote/port.hpp
@@ -27,8 +27,8 @@
#include "src/utils/cpp/type_safe_arithmetic.hpp"
// Port
-struct PortTag : type_safe_arithmetic_tag<std::uint16_t> {};
-using Port = type_safe_arithmetic<PortTag>;
+struct PortTag : TypeSafeArithmeticTag<std::uint16_t> {};
+using Port = TypeSafeArithmetic<PortTag>;
[[nodiscard]] static auto ParsePort(int const port_num) noexcept
-> std::optional<Port> {