mirror of
https://github.com/NixOS/nix.git
synced 2025-11-20 01:09:37 +01:00
libexpr: replace std::unordered_* types by faster boost hash maps
This commit is contained in:
parent
c0fd9146d6
commit
4f8c50fb77
6 changed files with 42 additions and 45 deletions
|
|
@ -57,7 +57,7 @@
|
|||
|
||||
namespace nix {
|
||||
|
||||
typedef std::unordered_map<PosIdx, DocComment> DocCommentMap;
|
||||
typedef boost::unordered_flat_map<PosIdx, DocComment, std::hash<PosIdx>> DocCommentMap;
|
||||
|
||||
Expr * parseExprFromBuf(
|
||||
char * text,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue