From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16902 invoked by alias); 23 Oct 2012 22:29:10 -0000 Received: (qmail 16876 invoked by uid 48); 23 Oct 2012 22:28:52 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/55043] issue with nesting unordered_map containing unique_ptr into vector Date: Tue, 23 Oct 2012 22:29:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-10/txt/msg02124.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55043 --- Comment #2 from Jonathan Wakely 2012-10-23 22:28:52 UTC --- This is due to the fact that _Hashtable::_Hashtable(_Hashtable&&) is not declared noexcept. I think we can just add 'noexcept' to the move ctor and move assignment op, at least until I add proper C++11 allocator support to the unordered containers.