Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Simon Marchi <simon.marchi@polymtl.ca>
To: gdb-patches@sourceware.org
Cc: Simon Marchi <simon.marchi@polymtl.ca>
Subject: [PATCH c++ 12/12] ada-lang.h: Add cast in GROW_VECT
Date: Mon, 26 Oct 2015 10:38:00 -0000	[thread overview]
Message-ID: <1445831362-18789-2-git-send-email-simon.marchi@polymtl.ca> (raw)
In-Reply-To: <1445831362-18789-1-git-send-email-simon.marchi@polymtl.ca>

The assignment requires a cast in C++.

gdb/ChangeLog:

	* ada-lang.h (GROW_VECT): Add cast.
---
 gdb/ada-lang.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h
index 62896f1..32c4b55 100644
--- a/gdb/ada-lang.h
+++ b/gdb/ada-lang.h
@@ -147,7 +147,7 @@ struct ada_task_info
    least M objects, updating V and S as necessary.  */
 
 #define GROW_VECT(v, s, m)                                    \
-   if ((s) < (m)) (v) = grow_vect (v, &(s), m, sizeof *(v));
+   if ((s) < (m)) (v) = (typeof (v)) grow_vect (v, &(s), m, sizeof *(v));
 
 extern void *grow_vect (void *, size_t *, size_t, int);
 
-- 
2.6.2


  reply	other threads:[~2015-10-26  3:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-26 10:23 [PATCH c++ 11/12] target.c: Add a cast and change a type Simon Marchi
2015-10-26 10:38 ` Simon Marchi [this message]
2015-10-26 23:09   ` [PATCH c++ 12/12] ada-lang.h: Add cast in GROW_VECT Pedro Alves
2015-10-27  9:54     ` Simon Marchi
2015-10-27 14:55       ` Pedro Alves
2015-10-27 16:00         ` Simon Marchi
2015-10-27  9:54 ` [PATCH c++ 11/12] target.c: Add a cast and change a type Simon Marchi

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=1445831362-18789-2-git-send-email-simon.marchi@polymtl.ca \
    --to=simon.marchi@polymtl.ca \
    --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