You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to build from source on redhat 7.9, boost 1.53, g++ 12.1.1
$ make
Consolidate compiler generated dependencies of target SimpleAmqpClient
[ 9%] Building CXX object CMakeFiles/SimpleAmqpClient.dir/src/BasicMessage.cpp.o
/home/bburas/projects/broker-demo/SimpleAmqpClient/src/BasicMessage.cpp: In member function 'const string& AmqpClient::BasicMessage::ContentType() const':
/home/bburas/projects/broker-demo/SimpleAmqpClient/src/BasicMessage.cpp:77:33: error: 'class boost::optional<std::basic_string >' has no member named 'value'
77 | return m_impl->content_type.value();
The text was updated successfully, but these errors were encountered:
The library currently claims support for boost 1.47, which does not have
the boost::optional::value API, which BasicProperties has used.
Fixes: #345
Signed-off-by: GitHub <[email protected]>
The library currently claims support for boost 1.47, which does not have
the boost::optional::value API, which BasicProperties has used.
Fixes: #345
Signed-off-by: GitHub <[email protected]>
Trying to build from source on redhat 7.9, boost 1.53, g++ 12.1.1
$ make
Consolidate compiler generated dependencies of target SimpleAmqpClient
[ 9%] Building CXX object CMakeFiles/SimpleAmqpClient.dir/src/BasicMessage.cpp.o
/home/bburas/projects/broker-demo/SimpleAmqpClient/src/BasicMessage.cpp: In member function 'const string& AmqpClient::BasicMessage::ContentType() const':
/home/bburas/projects/broker-demo/SimpleAmqpClient/src/BasicMessage.cpp:77:33: error: 'class boost::optional<std::basic_string >' has no member named 'value'
77 | return m_impl->content_type.value();
The text was updated successfully, but these errors were encountered: