From 156af3304da1bc4c1241ba95679088374284d9e3 Mon Sep 17 00:00:00 2001 From: yair Date: Thu, 13 Mar 2025 12:15:16 +0200 Subject: [PATCH] fixed std::uint32_t --- include/tins/ip_address.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tins/ip_address.h b/include/tins/ip_address.h index eb28ccb9..53a536fa 100644 --- a/include/tins/ip_address.h +++ b/include/tins/ip_address.h @@ -262,7 +262,7 @@ template<> struct hash { size_t operator()(const Tins::IPv4Address& addr) const { - return std::hash()(addr); + return std::hash()(addr); } };