Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 7893 invoked from network); 9 Dec 2005 01:39:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Dec 2005 01:39:31 -0000 Received: (qmail 36801 invoked by uid 500); 9 Dec 2005 01:39:31 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 36783 invoked by uid 500); 9 Dec 2005 01:39:30 -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 36772 invoked by uid 99); 9 Dec 2005 01:39:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2005 17:39:30 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 92C6318E for ; Fri, 9 Dec 2005 02:39:09 +0100 (CET) Message-ID: <715200483.1134092349599.JavaMail.jira@ajax.apache.org> Date: Fri, 9 Dec 2005 02:39:09 +0100 (CET) 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 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/STDCXX-66?page=all ] Martin Sebor updated STDCXX-66: ------------------------------- Component: 27. Input/Output Summary: implement large file support in iostreams (was: Errors accessing large files) > implement large file support in iostreams > ----------------------------------------- > > Key: STDCXX-66 > URL: http://issues.apache.org/jira/browse/STDCXX-66 > Project: STDCXX > Type: New Feature > Components: 27. Input/Output > Versions: 4.1.2 > Environment: AIX 5.2 > VisualAge C++ Professional / C for AIX Compiler, Version 6 > Reporter: Jeremy Dean > Priority: Minor > > #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. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira