From 5eace6f74c9edff8e264c2d26a85365ad9ea149c Mon Sep 17 00:00:00 2001 From: Tessil Date: Mon, 25 Sep 2023 07:35:52 +0100 Subject: [PATCH] Fix build error due to missing semicolon --- include/tsl/robin_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tsl/robin_hash.h b/include/tsl/robin_hash.h index 41a3692..14c3943 100644 --- a/include/tsl/robin_hash.h +++ b/include/tsl/robin_hash.h @@ -87,7 +87,7 @@ static T numeric_cast(U value, TSL_RH_THROW_OR_TERMINATE(std::runtime_error, error_message); } - TSL_RH_UNUSED(error_message) + TSL_RH_UNUSED(error_message); return ret; }