mirror of
https://github.com/holub/mame
synced 2025-07-05 01:48:29 +03:00
add C++ standard library headers for things that are used (nw)
This commit is contained in:
parent
26412cd829
commit
ae6185e5f6
@ -17,6 +17,8 @@
|
||||
#include "solver/nld_solver.h"
|
||||
#include "devices/nlid_truthtable.h"
|
||||
|
||||
#include <cmath>
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
// setup_t
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
@ -10,8 +10,10 @@
|
||||
|
||||
#include "pstring.h"
|
||||
|
||||
#include <vector>
|
||||
#include <cstddef>
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
namespace plib {
|
||||
|
||||
|
@ -7,10 +7,11 @@
|
||||
#ifndef PSTRING_H_
|
||||
#define PSTRING_H_
|
||||
|
||||
#include <iterator>
|
||||
#include <exception>
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
#include <exception>
|
||||
#include <iterator>
|
||||
#include <string>
|
||||
#include <type_traits>
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
// pstring: semi-immutable strings ...
|
||||
|
Loading…
Reference in New Issue
Block a user