From: James <kwa9272dthst@126.com>
To: gdb-patches <gdb-patches@sourceware.org>
Subject: USB C Docking Station from our meeting in HK trade show
Date: Thu, 19 Jul 2018 09:04:00 -0000 [thread overview]
Message-ID: <32FF39EE403B48461537672FAB0E436CEC204010@JASONSU> (raw)
Dear customers,
I like to send you this best model of Full function Type C Docking Station, 13 functions in 1. We are proud to say this is the best in design, and best in function so far compare to the markets.
Very competitve price: US$ 53/set. please find detail price sheets attached and the photos fyi.
This is a new mold and unique exlusive design.
Please contact me for more details and samples if you are interested in this product. We can send you samples so you can compare. I am sure you are going to love this product because it is much much better than in the market ones.
Thanks
Jason Su
Shenzhen Beilicheng Headlights Co. Ltd
Add: Room 702, Bldg 8, Bao An 75 District, Shenzhen, China
Tel: +86-755-26886566
Fax: +86-755-26886233
www.beilicheng.com
sujinshui@126.com
sales@beilicheng.com
CMZfwMtjgdb-patches2018
退订 Unsubscribe
From gdb-patches-return-149193-listarch-gdb-patches=sources.redhat.com@sourceware.org Thu Jul 19 10:00:40 2018
Return-Path: <gdb-patches-return-149193-listarch-gdb-patches=sources.redhat.com@sourceware.org>
Delivered-To: listarch-gdb-patches@sources.redhat.com
Received: (qmail 115350 invoked by alias); 19 Jul 2018 10:00:38 -0000
Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm
Precedence: bulk
List-Id: <gdb-patches.sourceware.org>
List-Subscribe: <mailto:gdb-patches-subscribe@sourceware.org>
List-Archive: <http://sourceware.org/ml/gdb-patches/>
List-Post: <mailto:gdb-patches@sourceware.org>
List-Help: <mailto:gdb-patches-help@sourceware.org>, <http://sourceware.org/ml/#faqs>
Sender: gdb-patches-owner@sourceware.org
Delivered-To: mailing list gdb-patches@sourceware.org
Received: (qmail 115044 invoked by uid 89); 19 Jul 2018 10:00:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Spam-SWARE-Status: No, score=-25.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.2 spammyX-HELO: mx1.redhat.com
Received: from mx3-rdu2.redhat.com (HELO mx1.redhat.com) (66.187.233.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 19 Jul 2018 10:00:20 +0000
Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F2B4972622 for <gdb-patches@sourceware.org>; Thu, 19 Jul 2018 10:00:10 +0000 (UTC)
Received: from localhost.localdomain (ovpn04.gateway.prod.ext.ams2.redhat.com [10.39.146.4]) by smtp.corp.redhat.com (Postfix) with ESMTP id A2EAC1C5AF for <gdb-patches@sourceware.org>; Thu, 19 Jul 2018 10:00:10 +0000 (UTC)
From: Pedro Alves <palves@redhat.com>
To: gdb-patches@sourceware.org
Subject: [ob/pushed] gdbscm_wrap, really forward args
Date: Thu, 19 Jul 2018 10:00:00 -0000
Message-Id: <20180719100009.14933-1-palves@redhat.com>
X-SW-Source: 2018-07/txt/msg00573.txt.bz2
Content-length: 1258
Commit 557e56be2648 ("Eliminate most remaining cleanups under
gdb/guile/") missed adding the && to Args to really forward the
arguments properly. Noticed by inspection.
gdb/ChangeLog:
2018-07-19 Pedro Alves <palves@redhat.com>
* guile/guile-internal.h (gdbscm_wrap): Really make 'args' a
forwarding reference.
---
gdb/ChangeLog | 5 +++++
gdb/guile/guile-internal.h | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 92c93f494f5..c28b24053ca 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2018-07-19 Pedro Alves <palves@redhat.com>
+
+ * guile/guile-internal.h (gdbscm_wrap): Really make 'args' a
+ forwarding reference.
+
2018-07-18 Pedro Alves <palves@redhat.com>
* guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
diff --git a/gdb/guile/guile-internal.h b/gdb/guile/guile-internal.h
index 20e002a28e2..38671bfd881 100644
--- a/gdb/guile/guile-internal.h
+++ b/gdb/guile/guile-internal.h
@@ -672,7 +672,7 @@ extern void gdbscm_initialize_values (void);
template<typename Function, typename... Args>
SCM
-gdbscm_wrap (Function &&func, Args... args)
+gdbscm_wrap (Function &&func, Args &&... args)
{
SCM result = SCM_BOOL_F;
--
2.14.4
reply other threads:[~2018-07-19 9:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=32FF39EE403B48461537672FAB0E436CEC204010@JASONSU \
--to=kwa9272dthst@126.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox