Files
simdjson-simdjson/fuzz
strager d036fdf919 Reduce #include bloat (<iostream>) (#1697)
Including <iostream> has two problems:

* Compile times are worse because of over-inclusion
* Binary sizes are worse when statically linking libstdc++ because
  iostreams cannot be dead-code-stripped

simdjson only needs std::ostream. Include the header declaring only what
we need (<ostream>), omitting stuff we don't need (std::cout and its
initialization, for example).

This commit should not change behavior, but it might break users who
assume that including <simdjson/simdjson.h> will make std::cout
available (such as many of simdjson's own files).
2021-08-13 11:24:36 -04:00
..
2020-10-17 05:48:50 +02:00
2021-02-21 16:33:05 -05:00
2020-09-26 14:25:00 +02:00
2020-12-01 15:58:41 -05:00
2021-07-05 09:42:57 +02:00
2020-12-01 15:58:41 -05:00
2020-09-16 21:17:43 +02:00