Skip to content

Commit 320f1ea

Browse files
committed
Update clp commit id which has y-scope/clp#579 fixed; remove no_message_available handling in deserialize_stream accordingly.
1 parent 77e2b2e commit 320f1ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/clp_ffi_js/ir/StructuredIrStreamReader.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ auto StructuredIrStreamReader::deserialize_stream() -> size_t {
101101
continue;
102102
}
103103
auto const error{result.error()};
104-
if (std::errc::no_message_available == error || std::errc::operation_not_permitted == error)
104+
if (std::errc::operation_not_permitted == error)
105105
{
106106
break;
107107
}

0 commit comments

Comments
 (0)