From a29a64a332c36a26a94fff7ad7340a51a949cd15 Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Tue, 12 Nov 2024 23:10:22 -0800 Subject: [PATCH] [thread.lock.unique.general] Remove extraneous space in `operator bool ()` This space is inconsistent with library style, and with the redeclaration of this member in [thread.lock.unique.obs]. --- source/threads.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/threads.tex b/source/threads.tex index 7bab867c50..7925987968 100644 --- a/source/threads.tex +++ b/source/threads.tex @@ -7588,7 +7588,7 @@ // \ref{thread.lock.unique.obs}, observers bool owns_lock() const noexcept; - explicit operator bool () const noexcept; + explicit operator bool() const noexcept; mutex_type* mutex() const noexcept; private: