add C++ standard library headers for things that are used (nw)

This commit is contained in:
Vas Crabb 2019-01-07 19:14:21 +11:00
parent 26412cd829
commit ae6185e5f6
3 changed files with 9 additions and 4 deletions

View File

@ -17,6 +17,8 @@
#include "solver/nld_solver.h"
#include "devices/nlid_truthtable.h"
#include <cmath>
// ----------------------------------------------------------------------------------------
// setup_t
// ----------------------------------------------------------------------------------------

View File

@ -10,8 +10,10 @@
#include "pstring.h"
#include <vector>
#include <cstddef>
#include <memory>
#include <utility>
#include <vector>
namespace plib {

View File

@ -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 ...