commit | 90ebb6fca0932e33f278d31d42101bb242b7dc7c | [log] [tgz] |
---|---|---|
author | Abseil Team <absl-team@google.com> | Tue Feb 27 01:36:12 2024 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Feb 27 01:37:15 2024 -0800 |
tree | d80fa474ec1b5cd8beb1ea8c552b7f634602aad5 | |
parent | 1436831c9515f81c8b27211acc143b98c6439646 [diff] [blame] |
Fix typo in example code snippet. PiperOrigin-RevId: 610672905 Change-Id: I8e4ae98bb6e6421540a3073e3e6cb7de60fd32a9
diff --git a/absl/base/prefetch.h b/absl/base/prefetch.h index eb40a44..482cde3 100644 --- a/absl/base/prefetch.h +++ b/absl/base/prefetch.h
@@ -129,7 +129,7 @@ // // void* Arena::Allocate(size_t size) { // void* ptr = AllocateBlock(size); -// absl::PrefetchToLocalCacheForWrite(p); +// absl::PrefetchToLocalCacheForWrite(ptr); // return ptr; // } //