boost icon indicating copy to clipboard operation
boost copied to clipboard

Super-project for modularized Boost

Results 173 boost issues
Sort by recently updated
recently updated
newest added

Hello everyone. I am trying to compile an external cpp project that uses boost (linked and built with CMake). However the following error is thrown while compiling the project. ![image](https://github.com/boostorg/boost/assets/114661411/c8c02f1d-7e18-4a7d-80f4-85d5b2a3f0c6)...

I don't know much about cpp development, and was just looking for a simple way to do serial communication to an arduino in cpp. I was lead to `boost/asio.hpp` but...

Boost c++ build v1.84 (using conan recipe) is not generating CMake files for all the components while using custom Namespace('boosts1d'). I am getting CMake files only for 'boost' and 'boost_headers'....

Version: 1.85.0 file path: boost\math\differentiation\finite_difference.hpp In function: finite_difference_derivative with 6th Order, calc step h by : ``` // Error: h^6f^(7)(x)/140 + 5|f(x)|eps/h Real h = pow(eps / 168, static_cast(1) /...

odeint2 Is there a way to implement matlab's ode45 event mechanism such as the following code: tspan=[0 t_max]; %Time span of simulation in sec Opt = odeset('Events', @myEvent); [t,x]=ode45(@EoM,tspan,x0,Opt); function...

Hi, Copying a message posted in the Boost mailing list a few weeks ago: Summary: Boost downloads will be hosted at a new location, with the URL format https://archives.boost.io/release/1.85.0/source/boost_1_85_0.tar.gz Details:...

Could you please modify the `BOOST_LIKELY` and `BOOST_UNLIKELY` macros in the following way: ```cpp #define BOOST_LIKELY(x) (__builtin_expect(!!(x), 1)) #define BOOST_UNLIKELY(x) (__builtin_expect(!!(x), 0)) ``` 1. I cannot easily use `BOOST_UNLIKELY` with...

This issue does not happen if one updates the Visual Studio version from e.g. 17.8 to 17.10. It happens if Visual Studio 17.10 is the only Visual Studio version which...

As the title says, I am having trouble with the two mentioned files adjacency_list.hpp and max_cardinality_matching.hpp, namely with certain includes (I am listing examples from adjacency_list.hpp): `#include ` and `#include...

Could you add the `[[nodiscard]]` attribute to the `boost::span::subspan` function. I tend to forget to store the returned value: ```cpp buffer_.subspan(bytesTransferred); ``` ... instead of ```cpp buffer_ = buffer_.subspan(bytesTransferred); ```