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
I noticed that clang/include/clang/3C/ProgramInfo.h uses std::map and clang/lib/3C.cpp uses std::vector. Llvm recommends that: "llvm::DenseMap should almost always be used instead of std::map or std::unordered_map, and llvm::SmallVector should usually be used instead of std::vector" .
From review of a PR to Microsoft:
Here are the LLVM guideline and the Programmer's Manual section on data structures.
The text was updated successfully, but these errors were encountered: