Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 57346 invoked from network); 5 Feb 2008 21:27:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2008 21:27:33 -0000 Received: (qmail 54358 invoked by uid 500); 5 Feb 2008 21:27:25 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 54349 invoked by uid 500); 5 Feb 2008 21:27:25 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 54340 invoked by uid 99); 5 Feb 2008 21:27:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2008 13:27:25 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Feb 2008 21:27:15 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 18BE971406E for ; Tue, 5 Feb 2008 13:27:08 -0800 (PST) Message-ID: <864845.1202246828091.JavaMail.jira@brutus> Date: Tue, 5 Feb 2008 13:27:08 -0800 (PST) From: "Martin Sebor (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Commented: (STDCXX-375) std::getline() declared in , but should be declared in MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-375?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12565895#action_12565895 ] Martin Sebor commented on STDCXX-375: ------------------------------------- Looks okay. Unless you've done a sanity build with EDG eccp let's keep an eye on nightly builds with the compiler to make sure they're still okay (since the patch removes the {{export}} keyword). > std::getline() declared in , but should be declared in > ------------------------------------------------------------------------ > > Key: STDCXX-375 > URL: https://issues.apache.org/jira/browse/STDCXX-375 > Project: C++ Standard Library > Issue Type: Bug > Components: 21. Strings > Affects Versions: 4.1.3, 4.1.4, 4.2.0 > Environment: All > Reporter: Farid Zaripov > Assignee: Farid Zaripov > Fix For: 4.2.1 > > Attachments: stdcxx-375.patch > > Original Estimate: 3h > Time Spent: 3h > Remaining Estimate: 0h > > The following code fails to compile with errors: > test.cpp(7) : error C2039: 'getline' : is not a member of 'std' > test.cpp(7) : error C3861: 'getline': identifier not found, even with argument-dependent lookup > test.cpp: > --------------------------- > #include > #include > void test (std::istream& is) > { > std::string str; > std::getline (is, str); > } > --------------------------- > The addition information here: http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200703.mbox/%3c7BDB2168BEAEF14C98F1901FD2DE6438594C10@epmsa009.minsk.epam.com%3e -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.