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
This is a bit surprising because it could be evaluated at compile time. It's slightly annoying because it might require adding the 'strings' library on CHERIoT and obviously is slightly suboptimal from a performance point of view. Using a string_view literal doesn't require this call e.g.
using namespace std::literals;
std::string_view a {"hello"sv};
This is by no means urgent and may be an upstream issue but thought it worth noting.
The text was updated successfully, but these errors were encountered:
The following code will emit a call to strlen:
This is a bit surprising because it could be evaluated at compile time. It's slightly annoying because it might require adding the 'strings' library on CHERIoT and obviously is slightly suboptimal from a performance point of view. Using a string_view literal doesn't require this call e.g.
This is by no means urgent and may be an upstream issue but thought it worth noting.
The text was updated successfully, but these errors were encountered: