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

Force use of boost::make_optional.

This commit is contained in:
King_DuckZ 2018-10-13 15:08:32 +01:00
parent 026df0f35a
commit 09add53cf8

View file

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