From c6b2ea10b548ea9f26359f31bfdd352709cbdea0 Mon Sep 17 00:00:00 2001 From: Yan Avlasov Date: Mon, 16 Nov 2020 10:36:17 -0500 Subject: [PATCH] Replace deprecated thread annotations macros. Signed-off-by: Yan Avlasov --- source/common/thread_safe_monotonic_time_stopwatch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/common/thread_safe_monotonic_time_stopwatch.h b/source/common/thread_safe_monotonic_time_stopwatch.h index 2e7b57d44..0d2e1e487 100644 --- a/source/common/thread_safe_monotonic_time_stopwatch.h +++ b/source/common/thread_safe_monotonic_time_stopwatch.h @@ -34,7 +34,7 @@ class ThreadSafeMontonicTimeStopwatch : public Stopwatch { private: Envoy::Thread::MutexBasicLockable lock_; - Envoy::MonotonicTime start_ GUARDED_BY(lock_); + Envoy::MonotonicTime start_ ABSL_GUARDED_BY(lock_); }; -} // namespace Nighthawk \ No newline at end of file +} // namespace Nighthawk