From: Andrew Pinski Date: Thu, 18 Aug 2022 12:36:28 +0000 (+0200) Subject: gcov-dump: properly use INCLUDE_VECTOR X-Git-Tag: basepoints/gcc-14~5095 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03119249b9cfedb48e910b8df6a832b206cced2b;p=thirdparty%2Fgcc.git gcov-dump: properly use INCLUDE_VECTOR PR gcov-profile/106659 gcc/ChangeLog: * gcov-dump.cc (INCLUDE_VECTOR): Include vector.h with INCLUDE_VECTOR. --- diff --git a/gcc/gcov-dump.cc b/gcc/gcov-dump.cc index 85b1be8859e2..03023bfb2267 100644 --- a/gcc/gcov-dump.cc +++ b/gcc/gcov-dump.cc @@ -17,6 +17,7 @@ along with Gcov; see the file COPYING3. If not see . */ #include "config.h" +#define INCLUDE_VECTOR #include "system.h" #include "coretypes.h" #include "tm.h" @@ -28,8 +29,6 @@ along with Gcov; see the file COPYING3. If not see #include "gcov-io.h" #include "gcov-io.cc" -#include - using namespace std; static void dump_gcov_file (const char *);