Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1469)

Unified Diff: syzygy/agent/asan/runtime.h

Issue 2363733003: Make syzyasan_rtl compile in 64 bit (Closed)
Patch Set: Nits. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « syzygy/agent/asan/registry_cache.cc ('k') | syzygy/agent/asan/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/agent/asan/runtime.h
diff --git a/syzygy/agent/asan/runtime.h b/syzygy/agent/asan/runtime.h
index 205bee8759553beb1471198316b7e3d169633d2f..2336e82a3cdc41ac4e93c774328f47e38866c4e0 100644
--- a/syzygy/agent/asan/runtime.h
+++ b/syzygy/agent/asan/runtime.h
@@ -317,7 +317,7 @@ class AsanRuntime {
// The set of thread IDs that have been seen in the current process.
// This is used to validate thread IDs in a block trailer.
base::Lock thread_ids_lock_;
- base::hash_set<uint32_t> thread_ids_; // Under thread_ids_lock_.
+ std::unordered_set<uint32_t> thread_ids_; // Under thread_ids_lock_.
// A random key that is generated on object creation. This is used for
// correlating duplicate crash reports on the back-end.
« no previous file with comments | « syzygy/agent/asan/registry_cache.cc ('k') | syzygy/agent/asan/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698