summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2020-07-10 20:11:08 -0400
committer Scott Stone <tafoid@gmail.com>2020-07-10 20:11:08 -0400
commit20868d0c2f17a36e3b70a849d4c5a1abd9e1d6cf (patch)
tree6b8cd68f81748211250ad065953b441035ea79b4
parent1fdd4cd212cccfcc14c7f23010119c9137e72469 (diff)
Pruning of redundant #includes located in src/mame/* (nw)
-rw-r--r--src/mame/includes/swtpc09.h1
-rw-r--r--src/mame/includes/xbox_usb.h2
-rw-r--r--src/mame/machine/esqpanel.cpp1
-rw-r--r--src/mame/machine/esqpanel.h2
-rw-r--r--src/mame/machine/esqvfd.h1
-rw-r--r--src/mame/video/decbac06.h1
-rw-r--r--src/mame/video/pin64.h2
-rw-r--r--src/mame/video/segas24.cpp4
8 files changed, 1 insertions, 13 deletions
diff --git a/src/mame/includes/swtpc09.h b/src/mame/includes/swtpc09.h
index c7bda684966..b67abd033dd 100644
--- a/src/mame/includes/swtpc09.h
+++ b/src/mame/includes/swtpc09.h
@@ -12,7 +12,6 @@
#pragma once
#include "cpu/m6809/m6809.h"
-#include "video/generic.h"
#include "machine/wd_fdc.h"
#include "imagedev/floppy.h"
#include "machine/6840ptm.h"
diff --git a/src/mame/includes/xbox_usb.h b/src/mame/includes/xbox_usb.h
index 641d7afb848..11149047394 100644
--- a/src/mame/includes/xbox_usb.h
+++ b/src/mame/includes/xbox_usb.h
@@ -5,8 +5,6 @@
#pragma once
-#include <forward_list>
-
struct OHCIEndpointDescriptor {
int mps; // MaximumPacketSize
int f; // Format
diff --git a/src/mame/machine/esqpanel.cpp b/src/mame/machine/esqpanel.cpp
index f5df1b55e87..7516f78aa7c 100644
--- a/src/mame/machine/esqpanel.cpp
+++ b/src/mame/machine/esqpanel.cpp
@@ -17,7 +17,6 @@
#include <sstream>
#include <string>
#include <thread>
-#include <list>
namespace esqpanel {
diff --git a/src/mame/machine/esqpanel.h b/src/mame/machine/esqpanel.h
index 77ffc6f9daf..0ab65d1ac35 100644
--- a/src/mame/machine/esqpanel.h
+++ b/src/mame/machine/esqpanel.h
@@ -10,8 +10,6 @@
#include "diserial.h"
-#include <vector>
-
//**************************************************************************
// TYPE DEFINITIONS
diff --git a/src/mame/machine/esqvfd.h b/src/mame/machine/esqvfd.h
index 3b0e008ed5e..38ae82ff03f 100644
--- a/src/mame/machine/esqvfd.h
+++ b/src/mame/machine/esqvfd.h
@@ -3,7 +3,6 @@
#ifndef MAME_MACHINE_ESQVFD_H
#define MAME_MACHINE_ESQVFD_H
-#include <memory>
#include <tuple>
diff --git a/src/mame/video/decbac06.h b/src/mame/video/decbac06.h
index ebfcb96eeb4..a66b3fe9603 100644
--- a/src/mame/video/decbac06.h
+++ b/src/mame/video/decbac06.h
@@ -7,7 +7,6 @@
#include "screen.h"
#include "tilemap.h"
-#include <memory>
typedef device_delegate<void (tile_data &tileinfo, u32 &tile, u32 &colour, u32 &flags)> decbac06_tile_cb_delegate;
diff --git a/src/mame/video/pin64.h b/src/mame/video/pin64.h
index daec1915299..5a0d73e6784 100644
--- a/src/mame/video/pin64.h
+++ b/src/mame/video/pin64.h
@@ -6,8 +6,6 @@
#define PIN64_H
#include <cstdio>
-#include <vector>
-#include <map>
#define PIN64_ENABLE_CAPTURE (0)
diff --git a/src/mame/video/segas24.cpp b/src/mame/video/segas24.cpp
index 3234b1eb6cd..0f11cb78058 100644
--- a/src/mame/video/segas24.cpp
+++ b/src/mame/video/segas24.cpp
@@ -5,12 +5,10 @@
*
*/
-#include <vector>
-#include <algorithm>
-
#include "emu.h"
#include "video/segaic24.h"
#include "includes/segas24.h"
+#include <algorithm>
namespace {