From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14527 invoked by alias); 3 May 2012 20:13:30 -0000 Received: (qmail 14496 invoked by uid 22791); 3 May 2012 20:13:26 -0000 X-SWARE-Spam-Status: No, hits=-3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 03 May 2012 20:13:12 +0000 From: "daniel.kruegler at googlemail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/53221] New: [C++11] basic_string lacks "copy/move constructors" with allocator Date: Thu, 03 May 2012 20:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: daniel.kruegler at googlemail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: 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-05/txt/msg00330.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53221 Bug #: 53221 Summary: [C++11] basic_string lacks "copy/move constructors" with allocator Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: daniel.kruegler@googlemail.com The library implementation of gcc 4.8.0 20120429 (experimental) misses the following "copy/move constructors" with allocators: basic_string(const basic_string&, const Allocator&); basic_string(basic_string&&, const Allocator&); These were added to the working draft with acceptance of the allocator proposal http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2554.pdf The following test case fails: //--- #include #include int main() { std::string s1; std::string s2(s1, std::allocator()); std::string s3(static_cast(s1), std::allocator()); } //---