We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6061375 + f7df43b commit 73fc302Copy full SHA for 73fc302
1 file changed
include/mqtt/connect_options.h
@@ -672,7 +672,7 @@ class connect_options_builder
672
/**
673
* Move constructor from an existing set of options.
674
*/
675
- explicit connect_options_builder(const connect_options&& opts) : opts_(std::move(opts)) {}
+ explicit connect_options_builder(connect_options&& opts) : opts_(std::move(opts)) {}
676
677
* Creates the default options builder for an MQTT v3.x connection.
678
* @return An options builder for an MQTT v3.x connection.
0 commit comments