From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 103637 invoked by alias); 19 Sep 2017 09:13:54 -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 103070 invoked by uid 89); 19 Sep 2017 09:13:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=(unknown) X-HELO: mail-qt0-f171.google.com Received: from mail-qt0-f171.google.com (HELO mail-qt0-f171.google.com) (209.85.216.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 19 Sep 2017 09:13:48 +0000 Received: by mail-qt0-f171.google.com with SMTP id x54so3046584qth.12 for ; Tue, 19 Sep 2017 02:13:48 -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:in-reply-to:references:from:date :message-id:subject:to:content-transfer-encoding; bh=UL0JL5IabEflh/60uT1IuMWo8QyEK6cSOdgZF5edueQ=; b=f3o5tnmd9tZAUQnO6GpLXo64uD+T2Kjgf4w+36x86OuqAehdCUzmayRAVR7EYWQG9T K9LW9r6JSdxybSQasxoyHDEdiF8aH864eUAOVZE/ODNMXwAYf/AJUt//JWjNQQpriyAv 5AjhYi/U3Sr9ki0eU7vgDjGhKHT2B3XCbV7l9xk6RiOFlR2Xgs7N1VJyvrwE53bDAr0K QAWDI/q+jnvE3AAy6gjKiiT8SA1y87/z3/FqCfXCdFi+axJ3z6gQNzwQBEmcy66GQhfi hdisTTh6APIGXYNVZY0kLG1GF18Wj0rDm2UY4JyIPO7Iv3DmWVPNB4pYxfZeGePpgYWI Km1Q== X-Gm-Message-State: AHPjjUiAUJExo4Z/LEjE/1dF4Vb+tfiMa1z70L42orKTyz4KvAYY2Ccs PRtv2urkyKN+NgvMXBN9M17IXvKXS3Dl8XBmTgVxqQ== X-Google-Smtp-Source: AOwi7QDres5vMdkhlBgQvOHvqpFd4CDMIQa8Y+z4GAKM+FQxMYVzcVZ9GbAGyEzRiC8vBUefNpGJl7yl3kAP3kzJxkU= X-Received: by 10.200.54.3 with SMTP id m3mr1016150qtb.197.1505812426433; Tue, 19 Sep 2017 02:13:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.12.135.164 with HTTP; Tue, 19 Sep 2017 02:13:45 -0700 (PDT) In-Reply-To: <1500385686-19857-1-git-send-email-yao.qi@linaro.org> References: <1500385686-19857-1-git-send-email-yao.qi@linaro.org> From: Yao Qi Date: Tue, 19 Sep 2017 09:13:00 -0000 Message-ID: Subject: Re: [PATCH] Add DISABLE_COPY_AND_ASSIGN To: "gdb-patches@sourceware.org" Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-09/txt/msg00464.txt.bz2 > > gdb: > > 2017-07-18 Yao Qi > > * common/common-defs.h (DISABLE_COPY_AND_ASSIGN): New macro. > * annotate.h (struct annotate_arg_emitter): Use > DISABLE_COPY_AND_ASSIGN. > * common/refcounted-object.h (refcounted_object): Likewise. > * completer.h (struct completion_result): Likewise. > * dwarf2read.c (struct dwarf2_per_objfile): Likewise. > * filename-seen-cache.h (filename_seen_cache): Likewise. > * gdbcore.h (thread_section_name): Likewise. > * gdb_regex.h (compiled_regex): Likewise. > * gdbthread.h (scoped_restore_current_thread): Likewise. > * inferior.h (scoped_restore_current_inferior): Likewise. > * jit.c (jit_reader): Likewise. > * linespec.h (struct linespec_result): Likewise. > * mi/mi-parse.h (struct mi_parse): Likewise. > * nat/fork-inferior.c (execv_argv): Likewise. > * progspace.h (scoped_restore_current_program_space): Likewise. > * python/python-internal.h (class gdbpy_enter): Likewise. > * regcache.h (regcache): Likewise. > * target-descriptions.c (struct tdesc_reg): Likewise. > (struct tdesc_type): Likewise. > (struct tdesc_feature): Likewise. > * ui-out.h (public:): Likewise. DISABLE_COPY_AND_ASSIGN was committed to include/ansidecl.h, so I pushed this patch in. --=20 Yao (=E9=BD=90=E5=B0=A7)