diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-11-19 20:01:37 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-19 20:03:53 -0800 |
commit | ed8185fc754e7820c31a9df441dbb47a92d466df (patch) | |
tree | 2357bc1651e5003454be4e148e162d4d0f4613f9 /test | |
parent | fbc4a8dbd1d1939854dbeb6ccfd4c6267f85c9ec (diff) |
Internal change.
PiperOrigin-RevId: 343419851
Diffstat (limited to 'test')
-rw-r--r-- | test/syscalls/linux/proc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syscalls/linux/proc.cc b/test/syscalls/linux/proc.cc index 7a0f33dff..47028639f 100644 --- a/test/syscalls/linux/proc.cc +++ b/test/syscalls/linux/proc.cc @@ -2459,7 +2459,7 @@ void CheckDuplicatesRecursively(std::string path) { return; } auto dir_closer = Cleanup([&dir]() { closedir(dir); }); - std::unordered_set<std::string> children; + absl::node_hash_set<std::string> children; while (true) { // Readdir(3): If the end of the directory stream is reached, NULL is // returned and errno is not changed. If an error occurs, NULL is |