Andrea Ricchi
Andrea Ricchi
Hi, I have the same issue on a bigger project. Every class that include the MQTT client takes a very long time to build. I've traced the build steps for...
@redboltz Based on the flame graph there are 2 issues. The first one is the source parsing. In particular the `mqtt/client.hpp` took 6 seconds. Off these 6 seconds, 4 are...
@redboltz I know that compile time is not as important as runtime performance. But when the library is used in a more complex application where, as in my example, the...
@NANDLAB I checked your code, that was the same situation as me. As I previously said I temporarily resolved the issue by moving the ```cpp #include "mqtt_client_cpp.hpp" typedef std::shared_ptr< mqtt::callable_overlay<...