From 1ad5373117b180dd9566a2e195249bdc0c21871e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 14 Oct 2024 15:47:05 -0700 Subject: [PATCH] Add a missing #include --- include/adobe/contract_checks.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/adobe/contract_checks.hpp b/include/adobe/contract_checks.hpp index 1f0227b..038679b 100644 --- a/include/adobe/contract_checks.hpp +++ b/include/adobe/contract_checks.hpp @@ -37,7 +37,8 @@ #define INTERNAL_ADOBE_CONTRACT_VIOLATION_LIKELIHOOD #endif -#include // for std::terminate(); +#include // for std::uint32_t +#include // for std::terminate() namespace adobe { enum class contract_violation_kind { precondition, invariant }; }// namespace adobe