Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed BOOST_VERSION typo. #413

Merged
merged 1 commit into from
Sep 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions include/mqtt/const_buffer_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,11 @@ namespace MQTT_NS {
namespace as = boost::asio;

inline char const* get_pointer(as::const_buffer const& cb) {
#if BOOST_VERION >= 106600
return static_cast<char const*>(cb.data());
#else // BOOST_VERION >= 106600
return as::buffer_cast<char const*>(cb);
#endif // BOOST_VERION >= 106600
}

inline std::size_t get_size(as::const_buffer const& cb) {
#if BOOST_VERION >= 106600
return cb.size();
#else // BOOST_VERION >= 106600
return as::buffer_size(cb);
#endif // BOOST_VERION >= 106600
}

} // namespace MQTT_NS
Expand Down