[libcxx-commits] [PATCH] D154590: [libc++] mark barrier constructor as explicit in <barrier>
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 12 12:31:39 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc77af00eb98c: [libc++] mark barrier constructor as explicit in <barrier> (authored by Edoardo Sanguineti <edoardo.sanguineti222 at gmail.com>, committed by philnik).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154590/new/
https://reviews.llvm.org/D154590
Files:
libcxx/include/barrier
libcxx/test/std/thread/thread.barrier/ctor.compile.pass.cpp
Index: libcxx/test/std/thread/thread.barrier/ctor.compile.pass.cpp
===================================================================
--- /dev/null
+++ libcxx/test/std/thread/thread.barrier/ctor.compile.pass.cpp
@@ -0,0 +1,22 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// UNSUPPORTED: no-threads
+// UNSUPPORTED: c++03, c++11
+
+// <barrier>
+
+// explicit barrier(ptrdiff_t __count, _CompletionF __completion = _CompletionF());
+
+// Make sure that the ctor of barrier is explicit.
+
+#include <barrier>
+
+#include "test_convertible.h"
+
+static_assert(!test_convertible<std::barrier<>, std::ptrdiff_t>(), "This constructor must be explicit");
Index: libcxx/include/barrier
===================================================================
--- libcxx/include/barrier
+++ libcxx/include/barrier
@@ -298,7 +298,7 @@
}
_LIBCPP_AVAILABILITY_SYNC _LIBCPP_INLINE_VISIBILITY
- barrier(ptrdiff_t __count, _CompletionF __completion = _CompletionF())
+ explicit barrier(ptrdiff_t __count, _CompletionF __completion = _CompletionF())
: __b_(__count, _VSTD::move(__completion)) {
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154590.539680.patch
Type: text/x-patch
Size: 1450 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230712/f4f81ec9/attachment.bin>
More information about the libcxx-commits
mailing list