BewareMyPower commented on code in PR #525:
URL: https://github.com/apache/pulsar-client-cpp/pull/525#discussion_r2583366250
##########
lib/Commands.cc:
##########
@@ -34,6 +34,7 @@
#include "OpSendMsg.h"
#include "PulsarApi.pb.h"
#include "Url.h"
+#include "boost/throw_exception.hpp"
Review Comment:
Without this header, the compilation will fail:
```
pulsar-client-cpp/lib/Commands.cc:811:5: error: use of undeclared identifier
'BOOST_THROW_EXCEPTION'
811 | BOOST_THROW_EXCEPTION(std::logic_error("Invalid BaseCommand
enumeration value"));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]