diff options
author | 2016-07-08 14:04:20 +1000 | |
---|---|---|
committer | 2016-07-08 14:04:20 +1000 | |
commit | aaa3090dd3a40587f3d4cd7ab8016bcd96131e08 (patch) | |
tree | 6a4d6845cc783cfe0972ff5fffb8ffce55a424c6 /src | |
parent | 50da8bcf1ad5404fe912c2b28b840223344f6abb (diff) |
clean up includes (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/diimage.cpp | 5 | ||||
-rw-r--r-- | src/emu/diimage.h | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/emu/diimage.cpp b/src/emu/diimage.cpp index 2f2a3453645..62f5b131818 100644 --- a/src/emu/diimage.cpp +++ b/src/emu/diimage.cpp @@ -8,8 +8,8 @@ ***************************************************************************/ -#include <regex> #include "emu.h" + #include "emuopts.h" #include "drivenum.h" #include "ui/uimain.h" @@ -17,6 +17,9 @@ #include "softlist.h" #include "formats/ioprocs.h" +#include <regex> + + //************************************************************************** // DEVICE CONFIG IMAGE INTERFACE //************************************************************************** diff --git a/src/emu/diimage.h b/src/emu/diimage.h index 4b9bb7c4a31..0c5d391d616 100644 --- a/src/emu/diimage.h +++ b/src/emu/diimage.h @@ -17,6 +17,11 @@ #ifndef __DIIMAGE_H__ #define __DIIMAGE_H__ +#include <memory> +#include <string> +#include <vector> + + //************************************************************************** // TYPE DEFINITIONS //************************************************************************** |