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
Following my above comment, the addition of arguments is related to std::string_view view, which for some reason LLVM translates into a two arguments of char * and size_t types.
The return type of function
std::string CEscape(absl::string_view src);
was incorrect in the report.It should be
std::string
, but the report recordsvoid
.The text was updated successfully, but these errors were encountered: