We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trace.cpp:SuppressionMap
Trace.cpp:SuppressionMap would (1) create a copy of the TraceEvent type string (2) Store the string inside the std::map data structure.
TraceEvent
type
std::map
Considering the frequency of using TraceEvent it might be interesting to see:
SuppressionMap
TraceEvent::type
std::unordered_map
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trace.cpp:SuppressionMap
would (1) create a copy of theTraceEvent
type
string (2) Store the string inside thestd::map
data structure.Considering the frequency of using
TraceEvent
it might be interesting to see:SuppressionMap
will only create a copy of theTraceEvent::type
when it is unknown.std::unordered_map
or some other custom implementation?The text was updated successfully, but these errors were encountered: