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
The places that I've seen this so far are with unordered_map's add, erase and clear. And also with the std::runtime_error.
Here's a testcase:
public class A
{
Dictionary<string, int>() dict;
public void Add(string key, int value) throws Exception
{
if(dict.ContainsKey(key))
throw Exception(key);
dict[key] = value;
}
}
The text was updated successfully, but these errors were encountered:
I'm getting errors with some functions when passing them a string_view. I think the issue is the same as this one:
https://www.devgem.io/posts/handling-std-string-view-with-std-fstream-in-c-why-doesn-t-it-work
The places that I've seen this so far are with unordered_map's add, erase and clear. And also with the std::runtime_error.
Here's a testcase:
The text was updated successfully, but these errors were encountered: