You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto node = compass::node();
auto devices = compass::devices();
auto value_node = compass::has(node, compass::feature::sse());
auto value_dev = compass::has(devices[0], compass::feature::sse());
...
what about:
auto node = compass::node();
auto devices = compass::devices();
auto value_node = node.has(compass::feature::sse());
auto value_dev = devices[0].has(compass::feature::sse());
...
The text was updated successfully, but these errors were encountered:
... coming from issue #3
Instead of:
what about:
The text was updated successfully, but these errors were encountered: