Fix std::optional -> boost::optional API

This commit is contained in:
Robin Gareus 2023-05-08 22:02:21 +02:00
parent 0d2d30f1a7
commit ee2bae5aa8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -1082,7 +1082,7 @@ Console1::create_strip_invetory ()
DEBUG_TRACE (DEBUG::Console1, string_compose ("insert strip at index %1, order %2\n", index, pi.order ()));
++index;
}
if (master_order.has_value ()) {
if (master_order) {
strip_inventory.insert (std::make_pair (index, master_order.value ()));
}
DEBUG_TRACE (DEBUG::Console1,