From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id CE5333858C2D for ; Thu, 8 Sep 2022 18:30:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org CE5333858C2D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1662661814; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=M/VQfSSROv8HswFYwbxvAlm9NHrhnOUEIcldpwtwPVg=; b=gHrWxHJ+8w4HyHniFwN0V2gE41D+68m1eLFxhGYR96Q0WCtaVtal6dAfMbq2wLJvYH17xX CL7oeoX5gfgL7cEsqJL2uv095E2T/Yzp9jqAxkboYnGJlYLrK7UFYiM4EyjRA4eIGnSJCl sKUkD7H6NxF6fUY1eeMhX7sjF9800Uc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-101-GCWu_uM3PTGxtJn8B6MaDw-1; Thu, 08 Sep 2022 14:30:11 -0400 X-MC-Unique: GCWu_uM3PTGxtJn8B6MaDw-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2B382101A54E; Thu, 8 Sep 2022 18:30:11 +0000 (UTC) Received: from localhost (unknown [10.33.36.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id E52E62026D4C; Thu, 8 Sep 2022 18:30:10 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Find make_error_code and make_error_condition via ADL only Date: Thu, 8 Sep 2022 19:30:10 +0100 Message-Id: <20220908183010.3290473-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-14.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Tested powerpc64le-linux, pushed to trunk. -- >8 -- The new proposed resolution for LWG 3629 says that std::error_code and std::error_condition should only use ADL to find their customization points. This means we need to use a poison pill to prevent lookup from finding overloads in the enclosing namespaces. We can also remove the forward declarations of std::make_error_code and std::make_error_condition, because they aren't needed now. ADL can find them anyway (when std is an associated namespace), and unqualified name lookup will not (and should not) find them. libstdc++-v3/ChangeLog: * include/std/system_error (__adl_only::make_error_code): Add deleted function. (__adl_only::make_error_condition): Likewise. (error_code::error_code(ErrorCodeEnum)): Add using-declaration for deleted function. (error_condition::error_condition(ErrorConditionEnum)): Likewise. * testsuite/19_diagnostics/error_code/cons/lwg3629.cc: New test. * testsuite/19_diagnostics/error_condition/cons/lwg3629.cc: New test. --- libstdc++-v3/include/std/system_error | 18 +++++-- .../19_diagnostics/error_code/cons/lwg3629.cc | 48 +++++++++++++++++++ .../error_condition/cons/lwg3629.cc | 48 +++++++++++++++++++ 3 files changed, 109 insertions(+), 5 deletions(-) create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc diff --git a/libstdc++-v3/include/std/system_error b/libstdc++-v3/include/std/system_error index 050439427cc..e12bb2f0e1e 100644 --- a/libstdc++-v3/include/std/system_error +++ b/libstdc++-v3/include/std/system_error @@ -195,7 +195,11 @@ _GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2) * @{ */ - error_code make_error_code(errc) noexcept; +namespace __adl_only +{ + void make_error_code() = delete; + void make_error_condition() = delete; +} /** Class error_code * @@ -231,7 +235,10 @@ _GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2) template> error_code(_ErrorCodeEnum __e) noexcept - { *this = make_error_code(__e); } + { + using __adl_only::make_error_code; + *this = make_error_code(__e); + } error_code(const error_code&) = default; error_code& operator=(const error_code&) = default; @@ -330,8 +337,6 @@ _GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2) operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) { return (__os << __e.category().name() << ':' << __e.value()); } - error_condition make_error_condition(errc) noexcept; - /** Class error_condition * * This class represents error conditions that may be visible at an API @@ -363,7 +368,10 @@ _GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2) template> error_condition(_ErrorConditionEnum __e) noexcept - { *this = make_error_condition(__e); } + { + using __adl_only::make_error_condition; + *this = make_error_condition(__e); + } error_condition(const error_condition&) = default; error_condition& operator=(const error_condition&) = default; diff --git a/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc b/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc new file mode 100644 index 00000000000..b1e0b7f0c81 --- /dev/null +++ b/libstdc++-v3/testsuite/19_diagnostics/error_code/cons/lwg3629.cc @@ -0,0 +1,48 @@ +// { dg-do compile { target c++11 } } + +// 3629. make_error_code and make_error_condition are customization points +// Verify that make_error_code is looked up using ADL only. + +namespace user +{ + struct E1; +} + +// N.B. not in associated namespace of E1, and declared before . +user::E1 make_error_code(user::E1); + +#include // declares std::make_error_code(future_errc) +#include + +namespace user +{ + struct E1 + { + operator std::error_code() const; + }; + + struct E2 + { + operator std::future_errc() const; + }; + + struct E3 + { + operator std::errc() const; + }; +} + +template<> struct std::is_error_code_enum : std::true_type { }; +template<> struct std::is_error_code_enum : std::true_type { }; +template<> struct std::is_error_code_enum : std::true_type { }; + +// ::make_error_code(E1) should not be found by name lookup. +std::error_code e1( user::E1{} ); // { dg-error "here" } + +// std::make_error_code(errc) should not be found by name lookup. +std::error_code e2( user::E2{} ); // { dg-error "here" } + +// std::make_error_code(future_errc) should not be found by name lookup. +std::error_code e3( user::E3{} ); // { dg-error "here" } + +// { dg-error "use of deleted function" "" { target *-*-* } 0 } diff --git a/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc b/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc new file mode 100644 index 00000000000..e34b53de8a1 --- /dev/null +++ b/libstdc++-v3/testsuite/19_diagnostics/error_condition/cons/lwg3629.cc @@ -0,0 +1,48 @@ +// { dg-do compile { target c++11 } } + +// 3629. make_error_code and make_error_condition are customization points +// Verify that make_error_condition is looked up using ADL only. + +namespace user +{ + struct E1; +} + +// N.B. not in associated namespace of E1, and declared before . +user::E1 make_error_condition(user::E1); + +#include // declares std::make_error_condition(future_errc) +#include + +namespace user +{ + struct E1 + { + operator std::error_code() const; + }; + + struct E2 + { + operator std::future_errc() const; + }; + + struct E3 + { + operator std::errc() const; + }; +} + +template<> struct std::is_error_condition_enum : std::true_type { }; +template<> struct std::is_error_condition_enum : std::true_type { }; +template<> struct std::is_error_condition_enum : std::true_type { }; + +// ::make_error_condition(E1) should not be found by name lookup. +std::error_condition e1( user::E1{} ); // { dg-error "here" } + +// std::make_error_condition(errc) should not be found by name lookup. +std::error_condition e2( user::E2{} ); // { dg-error "here" } + +// std::make_error_condition(future_errc) should not be found by name lookup. +std::error_condition e3( user::E3{} ); // { dg-error "here" } + +// { dg-error "use of deleted function" "" { target *-*-* } 0 } -- 2.37.3