From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 80398 invoked by alias); 23 Feb 2017 15:11:40 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 80383 invoked by uid 89); 23 Feb 2017 15:11:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-wr0-f194.google.com Received: from mail-wr0-f194.google.com (HELO mail-wr0-f194.google.com) (209.85.128.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 23 Feb 2017 15:11:39 +0000 Received: by mail-wr0-f194.google.com with SMTP id s27so4254030wrb.0 for ; Thu, 23 Feb 2017 07:11:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=KTgcX3AbvGYlRnY2NVf0weGqFlonSybS6J2+k9ch4Pc=; b=eJYLzg97eJ3ro1f3YqR7Shrp3nsafE/hWTdAiyOwzC/ZDS02+Kzy8b80sZFEJnldAK anG9fcREXiWOHqjaGhNElCZVgkNguWDocCinqgOx7lhRd5FUC93h6oZ/AfazrxDbAhrw fxCFmITUnHJZaBNSZbWT4C0s6cdN/QhMYsqU6AevMxrno4nQbno6GMyyTMHyo4EtlqWz c4Y08o99wUzOM6ugZgZzuvFOrz40FI6iognj/UMDdiVj3Z2HYCrsd2jSTA4uu6Y6/Zjr v+dQPbTa5+NzdAGlGFJgFXluUNh8jlQ1XUSkMJUipzSRB8+nUF27Gac5mDcmVrKYLm4y a3uQ== X-Gm-Message-State: AMke39njMSIKwskpFeQ8Eqn0xYcBRcq47zYkTgrxh78m96TXxcHj6BQSQXyRkJ0hqWLfYg== X-Received: by 10.223.173.171 with SMTP id w40mr28443947wrc.177.1487862697535; Thu, 23 Feb 2017 07:11:37 -0800 (PST) Received: from E107787-LIN ([194.214.185.158]) by smtp.gmail.com with ESMTPSA id 45sm6371377wrx.60.2017.02.23.07.11.36 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 23 Feb 2017 07:11:37 -0800 (PST) From: Yao Qi To: Pedro Alves Cc: Simon Marchi , gdb-patches@sourceware.org Subject: Re: [PATCH v1.1 1/3] Introduce gdb::function_view References: <1487775033-32699-1-git-send-email-palves@redhat.com> <1487775033-32699-2-git-send-email-palves@redhat.com> <8636f39b5e1e2cbdeabbf8dfd999e709@polymtl.ca> <4c8528d8-0115-3bf3-0a16-42f44be580a9@redhat.com> <20baebcd-0f6a-89ca-ef34-503795171d43@redhat.com> <20170222221158.hqfnyyvyqqxetygk@localhost> Date: Thu, 23 Feb 2017 15:11:00 -0000 In-Reply-To: (Pedro Alves's message of "Thu, 23 Feb 2017 14:49:50 +0000") Message-ID: <86efypaqmy.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-02/txt/msg00628.txt.bz2 Pedro Alves writes: > I think putting these new things in _some_ namespace is the > right thing to do. gdb is just the no-brainer namespace name. Yes, that right. > > IMO, _all_ of GDB should be under "namespace gdb". Then these utilities > would either be put in "namespace gdb" too, or in a "namespace gtl", > for "gdb template library" or something like that. Or we could > put them under "gtl" already. IMO, "gdb template library" or "gtl" is project name, but it doesn't fit well as a namespace name. I like "gdb::utils" :). --=20 Yao (=E9=BD=90=E5=B0=A7)