diff options
author | 2020-07-01 20:59:04 +0200 | |
---|---|---|
committer | 2020-07-01 20:59:04 +0200 | |
commit | 319be2dfd271ebf81ba3cf651be0b30695ec0d06 (patch) | |
tree | 08d9d10c35c10a495412292f628d41a82ed1873b /src/lib/netlist/plib/pstream.h | |
parent | 51ba9b48f08202939d06240eaa1dcfc7dfbd7c1c (diff) |
netlist: code maintenance and bug fixes.
* palloc.h/pmatrix2d.h: Fix static_assert warnings at the origin.
* Rework hints to broaden their use and fix NC hint.
* 74377: use NC hint
* plists.h: Fix debugging in MSVC
* Include cleanup: Move everything not needed by netlists from
nl_setup.h into core/setup.h
* Fix some clang tidy warnings
* srcclean
Diffstat (limited to 'src/lib/netlist/plib/pstream.h')
-rw-r--r-- | src/lib/netlist/plib/pstream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/pstream.h b/src/lib/netlist/plib/pstream.h index 179a4f5ca98..9333681b007 100644 --- a/src/lib/netlist/plib/pstream.h +++ b/src/lib/netlist/plib/pstream.h @@ -11,8 +11,8 @@ #include "pconfig.h" #include "pfmtlog.h" -#include "pstring.h" #include "pgsl.h" +#include "pstring.h" #include <array> #include <fstream> @@ -151,7 +151,7 @@ public: { // NOLINTNEXTLINE(performance-unnecessary-copy-initialization) const putf8string conv_utf8(text); - //m_strm->write(conv_utf8.c_str(), static_cast<std::streamsize>(plib::strlen(conv_utf8.c_str() ))); + //m_strm->write(conv_utf8.c_str(), static_cast<std::streamsize>(plib::strlen(conv_utf8.c_str() ))); ostream_write(*m_strm, conv_utf8.c_str(), string_info<pstring>::mem_size(conv_utf8)); } |