Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 62152 invoked from network); 14 Dec 2007 20:35:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Dec 2007 20:35:07 -0000 Received: (qmail 23926 invoked by uid 500); 14 Dec 2007 20:34:56 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 23919 invoked by uid 500); 14 Dec 2007 20:34:56 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 23908 invoked by uid 99); 14 Dec 2007 20:34:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 12:34:56 -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; Fri, 14 Dec 2007 20:34:52 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6676971420E for ; Fri, 14 Dec 2007 12:34:43 -0800 (PST) Message-ID: <30044268.1197664483417.JavaMail.jira@brutus> Date: Fri, 14 Dec 2007 12:34:43 -0800 (PST) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Updated: (STDCXX-66) implement large file support in iostreams In-Reply-To: <1539860024.1131729843229.JavaMail.jira@ajax.apache.org> 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-66?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor updated STDCXX-66: ------------------------------- Severity: Usability Affects Version/s: 4.1.3 4.1.4 4.2.0 Fix Version/s: 5.0 Since this affects the size of std::fpos it affects the binary compatibility of the library. Scheduled for 5.0. > implement large file support in iostreams > ----------------------------------------- > > Key: STDCXX-66 > URL: https://issues.apache.org/jira/browse/STDCXX-66 > Project: C++ Standard Library > Issue Type: New Feature > Components: 27. Input/Output > Affects Versions: 4.1.2, 4.1.3, 4.1.4, 4.2.0 > Environment: AIX 5.2 > VisualAge C++ Professional / C for AIX Compiler, Version 6 > Reporter: Jeremy Dean > Priority: Minor > Fix For: 5.0 > > > #include > #include > int main(int argc, char**argv) > { > std::ifstream i; > try > { > i.open("/tmp/largeFile.txt",std::ios::in); > if ( i.good() ) > { > char s[1024]; > i >> s ; // .getline(s, 100); > std::cout << s << std::endl; > } > else > { > std::cout << "Open error\n"; > } > } > catch(...) > { > std::cout << "error\n"; > } > return 0; > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.