From 129e5daf3d4bd0e9a2c5fa82cf2ccaefe82bda8f Mon Sep 17 00:00:00 2001 From: Christopher Eng <13134983+chriseng9@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:45:33 +0800 Subject: [PATCH 1/2] Adds limits as a dep to numeric_interval --- boost.BUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boost.BUILD b/boost.BUILD index 0e9870406..44d3bac07 100644 --- a/boost.BUILD +++ b/boost.BUILD @@ -2268,6 +2268,9 @@ boost_library( boost_library( name = "numeric_interval", boost_name = "numeric/interval", + deps = [ + ":limits" + ], ) _BOOST_TEST_DEPS = [ From f9fcb7946b2011c7715e790b68b09a889001afba Mon Sep 17 00:00:00 2001 From: Christopher Eng <13134983+chriseng9@users.noreply.github.com> Date: Thu, 9 Jan 2025 10:28:50 +0800 Subject: [PATCH 2/2] Update boost.BUILD --- boost.BUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boost.BUILD b/boost.BUILD index 44d3bac07..eead4efa4 100644 --- a/boost.BUILD +++ b/boost.BUILD @@ -2269,7 +2269,8 @@ boost_library( name = "numeric_interval", boost_name = "numeric/interval", deps = [ - ":limits" + ":config", + ":detail", ], )