From 2be75bdfc91d74e4f18ef015c2814471fa702194 Mon Sep 17 00:00:00 2001 From: Duarte Nunes Date: Thu, 26 Apr 2018 14:44:55 +0100 Subject: [PATCH] db/timeout_clock: Properly scope type names Signed-off-by: Duarte Nunes Message-Id: <20180426134457.21290-1-duarte@scylladb.com> --- db/timeout_clock.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/timeout_clock.hh b/db/timeout_clock.hh index fbf5195bba..4759d1545c 100644 --- a/db/timeout_clock.hh +++ b/db/timeout_clock.hh @@ -27,6 +27,6 @@ namespace db { using timeout_clock = seastar::lowres_clock; -using timeout_semaphore = basic_semaphore; +using timeout_semaphore = seastar::basic_semaphore; static constexpr timeout_clock::time_point no_timeout = timeout_clock::time_point::max(); }