From 03119249b9cfedb48e910b8df6a832b206cced2b Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Thu, 18 Aug 2022 14:36:28 +0200 Subject: [PATCH] gcov-dump: properly use INCLUDE_VECTOR PR gcov-profile/106659 gcc/ChangeLog: * gcov-dump.cc (INCLUDE_VECTOR): Include vector.h with INCLUDE_VECTOR. --- gcc/gcov-dump.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/gcov-dump.cc b/gcc/gcov-dump.cc index 85b1be8859e..03023bfb226 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 *);