From 5a49d4f15ad265ed45452e0f794a03ad2a5514aa Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 22 Jan 2026 20:08:27 +0300 Subject: [PATCH] Remove dependencies on Boost.StaticAssert. Boost.StaticAssert has been merged into Boost.Config, so remove the dependency. --- build.jam | 1 - test/cmake_subdir_test/CMakeLists.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/build.jam b/build.jam index 9a3ae7692..d7454118b 100644 --- a/build.jam +++ b/build.jam @@ -10,7 +10,6 @@ constant boost_dependencies : /boost/concept_check//boost_concept_check /boost/config//boost_config /boost/predef//boost_predef - /boost/static_assert//boost_static_assert /boost/throw_exception//boost_throw_exception /boost/type_traits//boost_type_traits ; diff --git a/test/cmake_subdir_test/CMakeLists.txt b/test/cmake_subdir_test/CMakeLists.txt index a610309ea..a853c4995 100644 --- a/test/cmake_subdir_test/CMakeLists.txt +++ b/test/cmake_subdir_test/CMakeLists.txt @@ -10,7 +10,6 @@ add_subdirectory(../.. boostorg/reegx) add_subdirectory(../../../config boostorg/config) add_subdirectory(../../../core boostorg/core) add_subdirectory(../../../assert boostorg/assert) -add_subdirectory(../../../static_assert boostorg/static_assert) add_subdirectory(../../../throw_exception boostorg/throw_exception) add_subdirectory(../../../predef boostorg/predef)