1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-23 00:33:44 +00:00

Build fix

This commit is contained in:
King_DuckZ 2018-10-13 14:05:24 +01:00
parent 5114bd4efb
commit c1224d9a7f

View file

@ -213,8 +213,10 @@ namespace kamokan {
return retval;
if (raw_replies.front().is_error()) {
using std::string;
using boost::make_optional;
retval.error =
boost::make_optional<std::string>(get_error_string(raw_replies.front()).message());
make_optional<string>(string(get_error_string(raw_replies.front()).message()));
return retval;
}
auto pastie_reply = get_array(raw_replies.front());