release_notes.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0.1 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  5. <title>Boost.Flyweight Documentation - Release notes</title>
  6. <link rel="stylesheet" href="style.css" type="text/css">
  7. <link rel="start" href="index.html">
  8. <link rel="prev" href="future_work.html">
  9. <link rel="up" href="index.html">
  10. <link rel="next" href="acknowledgements.html">
  11. </head>
  12. <body>
  13. <h1><img src="../../../boost.png" alt="Boost logo" align=
  14. "middle" width="277" height="86">Boost.Flyweight Release notes</h1>
  15. <div class="prev_link"><a href="future_work.html"><img src="prev.gif" alt="future work" border="0"><br>
  16. Future work
  17. </a></div>
  18. <div class="up_link"><a href="index.html"><img src="up.gif" alt="index" border="0"><br>
  19. Index
  20. </a></div>
  21. <div class="next_link"><a href="acknowledgements.html"><img src="next.gif" alt="acknowledgements" border="0"><br>
  22. Acknowledgements
  23. </a></div><br clear="all" style="clear: all;">
  24. <br clear="all" style="clear: all;">
  25. <hr>
  26. <h2>Contents</h2>
  27. <ul>
  28. <li><a href="#boost_1_71">Boost 1.71 release</a></li>
  29. <li><a href="#boost_1_69">Boost 1.69 release</a></li>
  30. <li><a href="#boost_1_60">Boost 1.60 release</a></li>
  31. <li><a href="#boost_1_58">Boost 1.58 release</a></li>
  32. <li><a href="#boost_1_57">Boost 1.57 release</a></li>
  33. <li><a href="#boost_1_56">Boost 1.56 release</a></li>
  34. <li><a href="#boost_1_55">Boost 1.55 release</a></li>
  35. <li><a href="#boost_1_45">Boost 1.45 release</a></li>
  36. <li><a href="#boost_1_44">Boost 1.44 release</a></li>
  37. <li><a href="#boost_1_40">Boost 1.40 release</a></li>
  38. <li><a href="#boost_1_39">Boost 1.39 release</a></li>
  39. <li><a href="#boost_1_38">Boost 1.38 release</a></li>
  40. </ul>
  41. <h2><a name="boost_1_71">Boost 1.71 release</a></h2>
  42. <p>
  43. <ul>
  44. <li>Maintenance work.</li>
  45. </ul>
  46. </p>
  47. <h2><a name="boost_1_69">Boost 1.69 release</a></h2>
  48. <p>
  49. <ul>
  50. <li>Fixed some issues in GCC related to Boost.MPL placeholder expression handling.</li>
  51. <li>Maintenance fixes.</li>
  52. </ul>
  53. </p>
  54. <h2><a name="boost_1_60">Boost 1.60 release</a></h2>
  55. <p>
  56. <ul>
  57. <li>Maintenance fixes.</li>
  58. </ul>
  59. </p>
  60. <h2><a name="boost_1_58">Boost 1.58 release</a></h2>
  61. <p>
  62. <ul>
  63. <li>Added hash support both with <code>std::hash</code> and
  64. <a href="../../../doc/html/hash.html"><code>boost::hash</code></a>. This
  65. can be optionally <a href="reference/flyweight.html#disable_hash_support">disabled</a>
  66. to avoid clashes with legacy code where this support has already been defined by
  67. the user.
  68. </li>
  69. <li>Maintenance fixes.</li>
  70. </ul>
  71. </p>
  72. <h2><a name="boost_1_57">Boost 1.57 release</a></h2>
  73. <p>
  74. <ul>
  75. <li>Added serialization support via
  76. <a href="../../serialization/index.html">Boost Serialization</a>.
  77. </li>
  78. <li>
  79. <code>flyweight</code> default constructor was made <code>explicit</code> in
  80. Boost 1.56, which introduces a regression in some
  81. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1518">initialization
  82. scenarios</a>. The former non-<code>explicit</code>
  83. default constructor has been restored
  84. (ticket <a href="https://svn.boost.org/trac/boost/ticket/10439">#10439</a>).
  85. </li>
  86. </ul>
  87. </p>
  88. <h2><a name="boost_1_56">Boost 1.56 release</a></h2>
  89. <p>
  90. <ul>
  91. <li>In compilers with variadic template support, <code>boost::flyweight&lt;T&gt;</code> now provides
  92. a perfectly forwarding constructor to <code>T::T</code> (previously an emulation
  93. was used).</li>
  94. <li><code>flyweight</code> now replicates the initializer-list constructors and assignment
  95. operators of its underlying type.</li>
  96. <li>Fixed intermodule static initialization problem
  97. (ticket <a href="https://svn.boost.org/trac/boost/ticket/9553">#9553</a>).</li>
  98. <li>Maintenance fixes.</li>
  99. </ul>
  100. </p>
  101. <h2><a name="boost_1_55">Boost 1.55 release</a></h2>
  102. <p>
  103. <ul>
  104. <li>Maintenance fixes.</li>
  105. </ul>
  106. </p>
  107. <h2><a name="boost_1_45">Boost 1.45 release</a></h2>
  108. <p>
  109. <ul>
  110. <li>Fixed a hanging problem with
  111. <a href="tutorial/configuration.html#intermodule_holder"><code>intermodule_holder</code></a>
  112. in Win32 platforms related to a Boost.Interprocess issue described at
  113. ticket <a href="https://svn.boost.org/trac/boost/ticket/4606">#4606</a>.
  114. </li>
  115. <li>Removed an internal assertion incompatible with program termination
  116. via <code>std::exit</code>.
  117. </li>
  118. </ul>
  119. </p>
  120. <h2><a name="boost_1_44">Boost 1.44 release</a></h2>
  121. <p>
  122. <ul>
  123. <li>Fixed an incorrect mode of usage of Boost.Variant in
  124. <a href="examples.html#example3">one of the examples</a>.
  125. </li>
  126. </ul>
  127. </p>
  128. <h2><a name="boost_1_40">Boost 1.40 release</a></h2>
  129. <p>
  130. <ul>
  131. <li>Maintenance fixes.</li>
  132. </ul>
  133. </p>
  134. <h2><a name="boost_1_39">Boost 1.39 release</a></h2>
  135. <p>
  136. <ul>
  137. <li><a name="refcounted_bug">The <a href="tutorial/configuration.html#refcounted"><code>refcounted</code></a>
  138. component was not thread-safe due to an incorrect implementation and could deadlock
  139. under heavy usage conditions. This problem has been corrected.</a>
  140. </li>
  141. </ul>
  142. </p>
  143. <h2><a name="boost_1_38">Boost 1.38 release</a></h2>
  144. <p>
  145. <ul>
  146. <li>Initial release of Boost.Flyweight.</li>
  147. </ul>
  148. </p>
  149. <hr>
  150. <div class="prev_link"><a href="future_work.html"><img src="prev.gif" alt="future work" border="0"><br>
  151. Future work
  152. </a></div>
  153. <div class="up_link"><a href="index.html"><img src="up.gif" alt="index" border="0"><br>
  154. Index
  155. </a></div>
  156. <div class="next_link"><a href="acknowledgements.html"><img src="next.gif" alt="acknowledgements" border="0"><br>
  157. Acknowledgements
  158. </a></div><br clear="all" style="clear: all;">
  159. <br clear="all" style="clear: all;">
  160. <br>
  161. <p>Revised April 24th 2019</p>
  162. <p>&copy; Copyright 2006-2019 Joaqu&iacute;n M L&oacute;pez Mu&ntilde;oz.
  163. Distributed under the Boost Software
  164. License, Version 1.0. (See accompanying file <a href="../../../LICENSE_1_0.txt">
  165. LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">
  166. http://www.boost.org/LICENSE_1_0.txt</a>)
  167. </p>
  168. </body>
  169. </html>