From 7ecc2d4df743c8a2744c72a3c38575fddbb19abe Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Mon, 21 Jun 2021 15:32:58 +0100 Subject: [PATCH] V3Hash: Add missing include. Fixes #3029 --- src/V3Hash.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/V3Hash.cpp b/src/V3Hash.cpp index 2f1b33003..35d924771 100644 --- a/src/V3Hash.cpp +++ b/src/V3Hash.cpp @@ -18,6 +18,7 @@ #include #include +#include V3Hash::V3Hash(const std::string& val) : m_value{static_cast(std::hash{}(val))} {}