From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x634.google.com (mail-ej1-x634.google.com [IPv6:2a00:1450:4864:20::634]) by sourceware.org (Postfix) with ESMTPS id 4A45A3854173 for ; Fri, 24 Jun 2022 07:45:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4A45A3854173 Received: by mail-ej1-x634.google.com with SMTP id ge10so2984462ejb.7 for ; Fri, 24 Jun 2022 00:45:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:reply-to:from:date:message-id :subject:to; bh=P19FktzM/2IconVhGrFL78i5eLSs6hWlT+j7oqnbnh0=; b=K551weAR5x8lt88TSL6waPNt/myyEWd9UNUMFRW4znhrkk/TAiGQdXGwv/SEIajhbf SKmzrCJVSchivvOjvH14nxLdlHbNV67T+vvYt/KhGMBCuzGTbfiUiPGCsKvoEigdx2j6 HUS0QZHkTZT2JP6UQX5Y5g4aD4quqa8XifKQ0GBtxNsGMm/RBBBkdNwL4ILqUXjTHbT8 yzWht4W3U37wG1s9EjLtybERAPL17o32oHtHyJAE2q0Msa4Gep2WVr9rrKyZNnoXVA6O YlnYMXKLZ6KGW8i3/SHbtMXNpf/OmdT6B0pQZvfur1K/OcZGSGR/oi7+Wsg8hM6haPL3 Sz2g== X-Gm-Message-State: AJIora9uFpU6W395CMRNOFUEojX0FatR2XSVAHR0ihegTeiIr0QAPdA8 ofDwSwIkk84LN9wSLWqQ+5gXMONeoq8vL/CNskwCXsaOa7Y= X-Google-Smtp-Source: AGRyM1vaK+QPRCgPy0RJH9wEsx+1JPCPN1GXnT0ezyWkHtWLAqLlwRzaMY25m+2/Z9Gx2U/Wln6p6jkpkKbCP6jhum8= X-Received: by 2002:a17:907:980f:b0:721:edd3:7d61 with SMTP id ji15-20020a170907980f00b00721edd37d61mr12203796ejc.13.1656056729050; Fri, 24 Jun 2022 00:45:29 -0700 (PDT) MIME-Version: 1.0 Reply-To: cauldwell.thomas@gmail.com From: Frederick Virchanza Gotham Date: Fri, 24 Jun 2022 08:45:18 +0100 Message-ID: Subject: string::find(string_view) is missing from To: "libstdc++" Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2022 07:45:31 -0000 I was hoping to replace "std::string" with "__gnu_debug::string" in my program, but when I do so, it no longer compiles. It fails to compile because "__gnu_debug::string" is missing the member function: template constexpr size_type find( StringViewLike const &t, size_type pos = 0u ) const noexcept; This member function was added in C++17. Are there any intentions to add it to __gnu_debug?