public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb/value.c: add several headers to the include list
@ 2022-07-20 14:20 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2022-07-20 14:20 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b0cf0a5b9df3a5896524b066f234b5cf5a382b22

commit b0cf0a5b9df3a5896524b066f234b5cf5a382b22
Author: Christopher Di Bella <cjdb@google.com>
Date:   Wed Jul 20 06:01:20 2022 +0000

    gdb/value.c: add several headers to the include list
    
    Building GDB currently fails to build with libc++, because libc++ is
    stricter about which headers "leak" entities they're not guaranteed
    to support. The following headers have been added:
    
    * `<iterator>`, to support `std::back_inserter`
    * `<utility>`, to support `std::move` and `std::swap`
    * `<vector>`, to support `std::vector`
    
    Change-Id: Iaeb15057c5fbb43217df77ce34d4e54446dbcf3d

Diff:
---
 gdb/value.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gdb/value.c b/gdb/value.c
index 022fca91a42..c9bec678d95 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -40,6 +40,9 @@
 #include "cp-abi.h"
 #include "user-regs.h"
 #include <algorithm>
+#include <iterator>
+#include <utility>
+#include <vector>
 #include "completer.h"
 #include "gdbsupport/selftest.h"
 #include "gdbsupport/array-view.h"


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-20 14:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-20 14:20 [binutils-gdb] gdb/value.c: add several headers to the include list Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).