diff options
| author | 2021-12-09 00:26:20 +0000 | |
|---|---|---|
| committer | 2021-12-09 00:26:20 +0000 | |
| commit | 4d531bd04ce6070e14c7bcfde2493d40b5641c1c (patch) | |
| tree | cfa4defcd03ac197f5e2088d72cd9f37f17a4689 | |
| parent | 2c709212cf6dabf14d7835ef4453ac0cb57dad03 (diff) | |
| parent | d8a36dea9fbba46d674530198e2b4925231f53c6 (diff) | |
Merge "Use std::shared_mutex in debug_report"
| -rw-r--r-- | vulkan/libvulkan/debug_report.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vulkan/libvulkan/debug_report.h b/vulkan/libvulkan/debug_report.h index e5b1587b4f..416c0bc2e1 100644 --- a/vulkan/libvulkan/debug_report.h +++ b/vulkan/libvulkan/debug_report.h @@ -78,8 +78,7 @@ class DebugReportCallbackList { VkDebugReportCallbackEXT driver_handle; }; - // TODO(b/143295577): use std::shared_mutex when available in libc++ - mutable std::shared_timed_mutex rwmutex_; + mutable std::shared_mutex rwmutex_; Node head_; }; |