diff options
author | 2019-09-25 01:09:52 +0200 | |
---|---|---|
committer | 2019-09-25 01:10:39 +0200 | |
commit | 441fb630879c07c2ac70e54632204f1d7fe39733 (patch) | |
tree | 48f651eca5a40cb9e10d00efa5aae67da679d28f /src/lib/netlist/plib/pmain.cpp | |
parent | c76cab187a82ae7ba936cff90076a4c81a8a9571 (diff) |
netlist: switch to c++ streams. (nw)
Removed the home-brew implementation pstreams and replaced those with
c++ streams.
Diffstat (limited to 'src/lib/netlist/plib/pmain.cpp')
-rw-r--r-- | src/lib/netlist/plib/pmain.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/netlist/plib/pmain.cpp b/src/lib/netlist/plib/pmain.cpp index 6b8a5c1f3fb..1ecf0a4d032 100644 --- a/src/lib/netlist/plib/pmain.cpp +++ b/src/lib/netlist/plib/pmain.cpp @@ -35,15 +35,8 @@ namespace plib { app::app() : options() -#if !USE_CSTREAM - , pout_strm() - , perr_strm() - , pout(&pout_strm) - , perr(&perr_strm) -#else , pout(&std::cout) , perr(&std::cerr) -#endif { } |