Super basic question about Boost Hana. From the examples it seems I should be able to do the following: However, I get which seems weird becaus ...
Super basic question about Boost Hana. From the examples it seems I should be able to do the following: However, I get which seems weird becaus ...
There are different sinks in code. Each sink has its rotation_size and max_size. Is there some way to constrain total size of all log sizes of all sin ...
So far, I've been formating the boost log using void initLog() { boost::log::add_common_attributes(); boost::log::add_console_log(std::c ...
I've created a HSM using boost MSM. Diagram: Code: I've created a small unit test just to check that basic transition works with the guard. Wh ...
I am trying to set up a basic Boost.Logging demo project, with Conan and CMake. I'm using Conan 1.53.0 and CMake 3.22.1, with gcc-11.3.0, on Ubuntu 2 ...
I'm trying to create a (pretty simple) parser using boost::spirit::qi to extract messages from a stream. Each message starts from a short marker and e ...
I posted a very similar question before, but it hasn't been fully answered yet. (I'm trying to read a serial port repeatedly but I have to test what ...
For example, I've seen this on a boost.heap issue: boost.heap is in maintenance mode. but i'm more than happy to integrate PRs What does mainte ...
I'm trying to use boost::odeint inside one of my class's member functions in a .cpp file. My class is called OdeDriver and the member is : I'm doin ...
I have a string containing two time stamps. I am trying to convert both the time stamps into boost::posix_time::ptime. the string format looks like: ...
I'm using Boost::Asio to create multiple UDP sockets and serial ports, and I use a single boost::asio::io_context that is shared among all of them (gi ...
I'm working on a project that has most of it's code in C++ and some in python. Is there a way to call import xxx and/or import xxx as x from C++? I ...
I have a grid made of squares, where each element has of course its own (integer) index. I used boost to create an RTree of bounding boxes for this gr ...
This is the code i have. now i have another function from which i have to call the active window which is the terminal window and here is the code f ...
Just making a simple example because I am having issues with a more complex usecase and want to udnerstand the base case before spending too much time ...
I'm working with a protocol where I don't have control of the input types. But I need to compute the difference in two, 64-bit unsigned integers (curr ...
I am currently trying to understand the following example of the boost library that uses parallel processing with thrust. struct lorenz_system { ...
I'm trying to write a very simple client/server app with boost::socket. I need a server to run and a single client to connect, send data, disconnect a ...
I'm trying to implement thread for a wait() method, in such a way that it should not block the main() thread. In the main thread, wait() function has ...
problem with implementing the time based event "validate", like wait methode takes the current time and time after 1 hour and sleep for 1 hour then ca ...