<iostream> embeds a global constructor (to initialize std::cout and such), typically `static ios_base::Init __ioinit;` in libstdc++). Replacing it by <istream>, <ostream> (or both) when possible has an impact on the number of global constructors involved (and thus on the number of instructions executed at startup).pull/18069/head
parent
f44ad0b1ae
commit
42d1458235
6 changed files with 4 additions and 6 deletions
Loading…
Reference in new issue