? gcc-5/.changes.html.swp Index: gcc-5/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.14 diff -u -u -r1.14 changes.html --- gcc-5/changes.html 2 Oct 2014 10:13:36 -0000 1.14 +++ gcc-5/changes.html 7 Oct 2014 12:34:27 -0000 @@ -96,15 +96,33 @@
  • std::deque meets the allocator-aware container requirements;
  • movable and swappable iostream classes;
  • support for std::aligned_union;
  • +
  • I/O manipulators std::hexfloat and + std::defaultfloat; +
  • +
  • Support for the C++11 hexfloat manipulator changes how + the num_put facet formats floating point types when + ios_base::fixed|ios_base::scientific is set in a stream's + fmtflags. This change affects all language modes, even + though the C++98 standard gave no special meaning to that combination + of flags. To prevent the use of hexadecimal notation for floating point + types use str.unsetf(std::ios_base::floatfield) to clear + the relevant bits in str.flags(). +
  • Improved experimental support for C++14, including:
  • -
  • An implementation of std::experimental::any.
  • +
  • + Improved experimental support for the Library Fundamentals TS, including: + +
  • New random number distributions logistic_distribution and uniform_on_sphere_distribution as extensions.
  • GDB