diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-22 15:48:21 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2017-01-22 15:48:21 +0000 |
commit | 6aed7ed0c2a9814bd19ede5bf1ec2d517ccb42e3 (patch) | |
tree | 60a1367e2aebf2fa77750f230e30e1b88833985a /gcc/gcov.c | |
parent | bc4d86e626ff7d3f64fd2b76ec31bb2779d0b8f2 (diff) | |
download | gcc-6aed7ed0c2a9814bd19ede5bf1ec2d517ccb42e3.zip gcc-6aed7ed0c2a9814bd19ede5bf1ec2d517ccb42e3.tar.gz gcc-6aed7ed0c2a9814bd19ede5bf1ec2d517ccb42e3.tar.bz2 |
gcov.c (INCLUDE_ALGORITHM): Define.
* gcov.c (INCLUDE_ALGORITHM): Define.
(INCLUDE_VECTOR): Define.
No longer include <vector> and <algorithm> directly.
From-SVN: r244758
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,6 +31,8 @@ along with Gcov; see the file COPYING3. If not see probabilities of fall through arcs. */ #include "config.h" +#define INCLUDE_ALGORITHM +#define INCLUDE_VECTOR #include "system.h" #include "coretypes.h" #include "tm.h" @@ -41,8 +43,6 @@ along with Gcov; see the file COPYING3. If not see #include <getopt.h> -#include <vector> -#include <algorithm> #include "md5.h" using namespace std; |