diff options
author | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-28 09:55:33 +0000 |
---|---|---|
committer | loewis <loewis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-28 09:55:33 +0000 |
commit | 7c3c5db330bcc8ed8ca34baae636141ce98d5df7 (patch) | |
tree | 2a153d1bf6d75395bb6ec0452041e51ce3954856 /libio | |
parent | 1b6156fd333c08c8375ef00a47662aaa271c7516 (diff) | |
download | gcc-7c3c5db330bcc8ed8ca34baae636141ce98d5df7.tar.gz |
* fstream.h (ifstream::ifstream): Add ios::in to mode.
(ifstream::open): Likewise.
(ofstream::ofstream): Add ios::out to mode.
(ofstream::open): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31666 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio')
-rw-r--r-- | libio/ChangeLog | 7 | ||||
-rw-r--r-- | libio/fstream.h | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index f4632e397e0..b15bc38955d 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,10 @@ +2000-01-28 Martin v. Löwis <loewis@informatik.hu-berlin.de> + + * fstream.h (ifstream::ifstream): Add ios::in to mode. + (ifstream::open): Likewise. + (ofstream::ofstream): Add ios::out to mode. + (ofstream::open): Likewise. + 2000-01-27 Zack Weinberg <zack@wolery.cumb.org> * dbz/dbz.c, dbz/dbzmain.c: Include stdlib.h. Don't declare diff --git a/libio/fstream.h b/libio/fstream.h index ea98f5caed0..b5f6598538f 100644 --- a/libio/fstream.h +++ b/libio/fstream.h @@ -1,5 +1,5 @@ /* This is part of libio/iostream, providing -*- C++ -*- input/output. -Copyright (C) 1993 Free Software Foundation +Copyright (C) 1993, 2000 Free Software Foundation This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the @@ -62,9 +62,9 @@ class ifstream : public fstreambase, public istream { ifstream(int fd) : fstreambase(fd) { } ifstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/ ifstream(const char *name, int mode=ios::in, int prot=0664) - : fstreambase(name, mode, prot) { } + : fstreambase(name, mode | ios::in, prot) { } void open(const char *name, int mode=ios::in, int prot=0664) - { fstreambase::open(name, mode, prot); } + { fstreambase::open(name, mode | ios::in, prot); } }; class ofstream : public fstreambase, public ostream { @@ -73,9 +73,9 @@ class ofstream : public fstreambase, public ostream { ofstream(int fd) : fstreambase(fd) { } ofstream(int fd, char *p, int l) : fstreambase(fd, p, l) { } /*Deprecated*/ ofstream(const char *name, int mode=ios::out, int prot=0664) - : fstreambase(name, mode, prot) { } + : fstreambase(name, mode | ios::out, prot) { } void open(const char *name, int mode=ios::out, int prot=0664) - { fstreambase::open(name, mode, prot); } + { fstreambase::open(name, mode | ios::out, prot); } }; class fstream : public fstreambase, public iostream { |