Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86578 - in website/public_html/live: feed/history generated generated/state users/history
From: dnljms_at_[hidden]
Date: 2013-11-06 17:02:18


Author: danieljames
Date: 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013)
New Revision: 86578
URL: http://svn.boost.org/trac/boost/changeset/86578

Log:
Try to make the initializer list note a bit clearer.

Text files modified:
   website/public_html/live/feed/history/boost_1_55_0.qbk | 10 +++++++---
   website/public_html/live/generated/dev.rss | 11 +++++++++++
   website/public_html/live/generated/state/feed-pages.txt | 4 ++--
   website/public_html/live/generated/state/rss-items.txt | 13 ++++++++++++-
   website/public_html/live/users/history/version_1_55_0.html | 11 +++++++++++
   5 files changed, 43 insertions(+), 6 deletions(-)

Modified: website/public_html/live/feed/history/boost_1_55_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_55_0.qbk Wed Nov 6 16:16:55 2013 (r86577)
+++ website/public_html/live/feed/history/boost_1_55_0.qbk 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013) (r86578)
@@ -57,9 +57,13 @@
 * Serialization can't compile because of a missing include.
 * Using `has_member_function_callable_with` from Boost.Container's
   `allocator_traits` causes a compile error ([ticket 9332]).
-* For several libraries overloads with intializer lists are incorrectly
- reported as ambiguous. This is a Visual C++ bug and it isn't clear if
- there's a good workaround.
+* In libraries such as Unordered and MultiIndex, calling overloaded functions
+ with initializer lists can result in a compile error, with Visual C++
+ claiming that the overloads are ambiguous. This is a Visual C++ bug and it
+ isn't clear if there's a good workaround. This won't affect code that doesn't
+ use initializer lists, or uses an initializer list that doesn't require an
+ implicit conversion (i.e. an initializer list of the container's exact value
+ type).
 * Thread: `ex_scoped_thread` compile fails ([ticket 9333]).
 
 [endsect]

Modified: website/public_html/live/generated/dev.rss
==============================================================================
--- website/public_html/live/generated/dev.rss Wed Nov 6 16:16:55 2013 (r86577)
+++ website/public_html/live/generated/dev.rss 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013) (r86578)
@@ -94,6 +94,17 @@
       </li>
       <li>
         <div>
+ In libraries such as Unordered and MultiIndex, calling overloaded functions
+ with initializer lists can result in a compile error, with Visual C++ claiming
+ that the overloads are ambiguous. This is a Visual C++ bug and it isn't
+ clear if there's a good workaround. This won't affect code that doesn't
+ use initializer lists, or uses an initializer list that doesn't require
+ an implicit conversion (i.e. an initializer list of the container's exact
+ value type).
+ </div>
+ </li>
+ <li>
+ <div>
           Thread: <code><span class="identifier">ex_scoped_thread</span></code>
           compile fails (<a href="https://svn.boost.org/trac/boost/ticket/9333">#9333</a>).
         </div>

Modified: website/public_html/live/generated/state/feed-pages.txt
==============================================================================
--- website/public_html/live/generated/state/feed-pages.txt Wed Nov 6 16:16:55 2013 (r86577)
+++ website/public_html/live/generated/state/feed-pages.txt 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013) (r86578)
@@ -2041,7 +2041,7 @@
 -id
 "version_1_55_0
 -last_modified
-.1383771975.2
+.1383775276.13
 -location
 "users/history/version_1_55_0.html
 -notice
@@ -2059,7 +2059,7 @@
 " Utility, Variant, Wave, xpressive.
 "
 -qbk_hash
-"cc2bfd48d9447768a39f9f2ccf5e2c3c7601974c31e59225dc030091576aaa8c
+"15d03a43d9dbe0806d79af3b2bcb87210d263fdf0fc561ff3c3a46de27b13400
 -release_status
 "beta
 -title

Modified: website/public_html/live/generated/state/rss-items.txt
==============================================================================
--- website/public_html/live/generated/state/rss-items.txt Wed Nov 6 16:16:55 2013 (r86577)
+++ website/public_html/live/generated/state/rss-items.txt 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013) (r86578)
@@ -20416,6 +20416,17 @@
 " </li>
 " <li>
 " <div>
+" In libraries such as Unordered and MultiIndex, calling overloaded functions
+" with initializer lists can result in a compile error, with Visual C++ claiming
+" that the overloads are ambiguous. This is a Visual C++ bug and it isn't
+" clear if there's a good workaround. This won't affect code that doesn't
+" use initializer lists, or uses an initializer list that doesn't require
+" an implicit conversion (i.e. an initializer list of the container's exact
+" value type).
+" </div>
+" </li>
+" <li>
+" <div>
 " Thread: <code><span class="identifier">ex_scoped_thread</span></code>
 " compile fails (<a href="https://svn.boost.org/trac/boost/ticket/9333">#9333</a>).
 " </div>
@@ -22176,7 +22187,7 @@
 " </div>
 "</description></item>
 -last_modified
-.1383771975.2
+.1383775276.13
 -quickbook
 "feed/history/boost_1_55_0.qbk
 )

Modified: website/public_html/live/users/history/version_1_55_0.html
==============================================================================
--- website/public_html/live/users/history/version_1_55_0.html Wed Nov 6 16:16:55 2013 (r86577)
+++ website/public_html/live/users/history/version_1_55_0.html 2013-11-06 17:02:18 EST (Wed, 06 Nov 2013) (r86578)
@@ -130,6 +130,17 @@
       </li>
       <li>
         <div>
+ In libraries such as Unordered and MultiIndex, calling overloaded functions
+ with initializer lists can result in a compile error, with Visual C++ claiming
+ that the overloads are ambiguous. This is a Visual C++ bug and it isn't
+ clear if there's a good workaround. This won't affect code that doesn't
+ use initializer lists, or uses an initializer list that doesn't require
+ an implicit conversion (i.e. an initializer list of the container's exact
+ value type).
+ </div>
+ </li>
+ <li>
+ <div>
           Thread: <code><span class="identifier">ex_scoped_thread</span></code>
           compile fails (#9333).
         </div>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk