diff options
| author | 2021-01-02 15:11:27 -0500 | |
|---|---|---|
| committer | 2021-01-02 15:18:15 -0500 | |
| commit | 60e518cc505ad5de6331a5da0d8291346757b9bd (patch) | |
| tree | 33e9ab6c897eacb273e6f9d41c5c0d1c9595c443 /src/osd/modules/font | |
| parent | 78f93a270c2b8d013128a2a346bdf0b8f98700d9 (diff) | |
Low-level #include overhaul
- vecstream.h: Revert changes made in aa29519528cb3dbdbfac56819bea670ed8c56c5d. The std::string_view conversion has been made a non-member function (util::buf_to_string_view) and moved to coretmpl.h.
- strformat.h: Remove the using declaration importing util::string_format into the global namespace. It has been moved to emucore.h and a few tool sources; other references have been qualified.
- osdcore.h: Split out file, directory and path classes and methods to a new header (osdfile.h), Doxygenizing the documentation comments.
- Disaggregate many #includes that were including other standard or custom headers. emu.h now includes basically the same things that it did, but other headers have been streamlined; for instance, emucore.h no longer stealth-includes osdcore.h several ways.
Diffstat (limited to 'src/osd/modules/font')
| -rw-r--r-- | src/osd/modules/font/font_osx.cpp | 1 | ||||
| -rw-r--r-- | src/osd/modules/font/font_sdl.cpp | 1 | ||||
| -rw-r--r-- | src/osd/modules/font/font_windows.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/osd/modules/font/font_osx.cpp b/src/osd/modules/font/font_osx.cpp index f26b75ad073..42c61b1fa6d 100644 --- a/src/osd/modules/font/font_osx.cpp +++ b/src/osd/modules/font/font_osx.cpp @@ -10,7 +10,6 @@ #ifdef SDLMAME_MACOSX -#include "corealloc.h" #include "fileio.h" #include <ApplicationServices/ApplicationServices.h> diff --git a/src/osd/modules/font/font_sdl.cpp b/src/osd/modules/font/font_sdl.cpp index 08c1f076970..585673a4159 100644 --- a/src/osd/modules/font/font_sdl.cpp +++ b/src/osd/modules/font/font_sdl.cpp @@ -11,7 +11,6 @@ #if defined(SDLMAME_UNIX) && !defined(SDLMAME_MACOSX) && !defined(SDLMAME_HAIKU) && !defined(SDLMAME_ANDROID) #include "corestr.h" -#include "corealloc.h" #include "fileio.h" #include "unicode.h" diff --git a/src/osd/modules/font/font_windows.cpp b/src/osd/modules/font/font_windows.cpp index 96701f96cfc..4387c6522c1 100644 --- a/src/osd/modules/font/font_windows.cpp +++ b/src/osd/modules/font/font_windows.cpp @@ -17,7 +17,6 @@ #include "strconv.h" #include "unicode.h" #include "corestr.h" -#include "corealloc.h" #include <cstring> |
