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
Make a code review based on this cool article. Also take into accout how you can improve performance with this other cool article.
Keywords:
Return by value, RVO, NRVO, copy elision instead returning references
Exceptions / std::optional instead of bool return
Structured Bindings instead of reference parameter outputs
Suspection:
The MeasurementDataProtocol is not efficiently returning the Diagrams because the data will be copied first to the std::istream then to the Diagram then the diagram will be copied to the std::vector
The text was updated successfully, but these errors were encountered:
Make a code review based on this cool article. Also take into accout how you can improve performance with this other cool article.
Keywords:
Suspection:
The text was updated successfully, but these errors were encountered: