-
Notifications
You must be signed in to change notification settings - Fork 46
v.5.7.2
Yauheni Akhotnikau edited this page Nov 30, 2020
·
1 revision
This page describes changes and new features of v.5.7.2.
operator==
and operator!=
added to so_5::coop_handle_t
. It allows to write code like that:
so_5::coop_handle_t coop1 = ...;
so_5::coop_handle_t coop2 = ...;
if(coop1 == coop2) {
... // It is the same coop.
}