<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Building tests with gcc-15 fails with:

operators_unary.cpp: In function 'int main()':
operators_unary.cpp:30:14: error: 'uint32_t' was not declared in this scope
   30 |         term&lt;uint32_t&gt; x{{2u}};
      |              ^~~~~~~~

Bug: https://bugs.gentoo.org/954810

diff --git boost_1_88_0/libs/yap/test/operators_unary.cpp~ boost_1_88_0/libs/yap/test/operators_unary.cpp
index c65aead..25a6b2f 100644
--- boost_1_88_0/libs/yap/test/operators_unary.cpp~
+++ boost_1_88_0/libs/yap/test/operators_unary.cpp
@@ -8,7 +8,7 @@
 #include &lt;boost/core/lightweight_test.hpp&gt;
 
 #include &lt;sstream&gt;
-
+#include &lt;cstdint&gt;
 
 template&lt;typename T&gt;
 using term = boost::yap::terminal&lt;boost::yap::expression, T&gt;;
</pre></body></html>