From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x131.google.com (mail-il1-x131.google.com [IPv6:2607:f8b0:4864:20::131]) by sourceware.org (Postfix) with ESMTPS id 34B933870845 for ; Mon, 8 Jun 2020 14:34:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 34B933870845 Received: by mail-il1-x131.google.com with SMTP id v11so16944004ilh.1 for ; Mon, 08 Jun 2020 07:34:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=T4dutz+yyu0jZdhqdWweEo3M17tLu6sVIH2gOWYO/4Q=; b=YZBhGikA8BK5Y5jkr9iVCuUikB+yziLQ0BHRjykLX7PCcRZ0NzCgBTogLwhsdErRxk dONmzG9vXUOPopnbOu1JmPAXEqXV/oDbowZNweWDE+ObqiKExCXRpRxe5QhBATBQMVV5 QOk7EnhaTNFBEI8KUPPC2vkHnBPjPzSBXIDJKLQ4tx7iG9AKvHJjOZSTagyCl/dZUGih hbJ6fqf9Hk60Pxs1S4QRp8kiVNyicKvjR1l7Ypxmq5e8i2r6BaneTP2BxXsIXuYEr6Uh eKYwouAxDPdv7hF3Fvki+VvXQK8kzRAMfgFEBBdR+JLGr9/q3CXDkK+ggdUQBsU0ScWq WCJw== X-Gm-Message-State: AOAM530zd9hcG/EghC7eoJ+c6g9CSLMI2Q/W8pVqJTyjhgrXSYu6wu9H ThzpsUvFelpxNjlDxKjoU3GIxLK3K81pC4Z+394= X-Google-Smtp-Source: ABdhPJxCDwzii9YHEY99B3/M/fNhWKn2N8L/BEgb+9I+PtPnDE8zwg3mlnvzVdVUV87hnbFsHMofXIjeUq31nglxnng= X-Received: by 2002:a92:d845:: with SMTP id h5mr22558023ilq.4.1591626864717; Mon, 08 Jun 2020 07:34:24 -0700 (PDT) MIME-Version: 1.0 References: <20200607211018.Horde.adcpNdzA9nyGq1LTPXZrKaW@webmail.bnv-bamberg.de> <20200608064244.Horde.oyKLkkNT3lFysQLTt_gU5hh@webmail.bnv-bamberg.de> <20200608134412.Horde.mIJ7NQthkPEbn-W1QLIxrj9@webmail.bnv-bamberg.de> In-Reply-To: <20200608134412.Horde.mIJ7NQthkPEbn-W1QLIxrj9@webmail.bnv-bamberg.de> From: Jonathan Wakely Date: Mon, 8 Jun 2020 15:34:13 +0100 Message-ID: Subject: Re: g++ version 7.5.0 and library To: hbusch@bnv-bamberg.de Cc: gcc-help Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3.6 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 autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-help@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-help mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2020 14:34:26 -0000 On Mon, 8 Jun 2020 at 12:44, wrote: > > You are right Jonathan, at least I do not get an error from the > compiler complaining about when I use > . > > However, the next hurdle for the compiler is the following statement: > > std::pmr::monotonic_buffer_resource ... > > So at least this seems not be be included. It is included. is a different header from , and it provides different types and functions. The contents of as in namespace std::experimental. See https://en.cppreference.com/w/cpp/header/experimental/memory_resource Maybe you should just update your compiler so you can use C++17.