diff options
| author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-08 05:20:52 +0000 |
|---|---|---|
| committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-08 05:20:52 +0000 |
| commit | 569455ec2b2ecb11150b2dce2f8cf1a2fffc20df (patch) | |
| tree | fdcf4dd7fd61e4508ed2ae9145fe214fc561c00b /libstdc++-v3/include/std/fstream | |
| parent | 3e785901ea20b3b09989a5d47f7a8fb1fc80391f (diff) | |
| download | ppe42-gcc-569455ec2b2ecb11150b2dce2f8cf1a2fffc20df.tar.gz ppe42-gcc-569455ec2b2ecb11150b2dce2f8cf1a2fffc20df.zip | |
2012-03-08 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/user.cfg.in: Update to Doxygen 1.8.0.
* include/bits/locale_facets.h: Adjust markup to avoid warnings.
* include/ext/pb_ds/assoc_container.hpp: Same.
* include/ext/pb_ds/priority_queue.hpp: Same.
* include/std/fstream: Same.
* include/std/ratio: Same.
* testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Adjust line
numbers.
* testsuite/20_util/ratio/operations/ops_overflow_neg.cc: Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@185094 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/fstream')
| -rw-r--r-- | libstdc++-v3/include/std/fstream | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/std/fstream b/libstdc++-v3/include/std/fstream index 65de272811f..b4a86a1a19f 100644 --- a/libstdc++-v3/include/std/fstream +++ b/libstdc++-v3/include/std/fstream @@ -232,7 +232,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * * If a file is already open, this function immediately fails. * Otherwise it tries to open the file named @a __s using the flags - * given in @a mode. + * given in @a __mode. * * Table 92, adapted here, gives the relation between openmode * combinations and the equivalent fopen() flags. @@ -619,8 +619,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * @param __s Null terminated string specifying the filename. * @param __mode Open file in specified mode (see std::ios_base). * - * @c ios_base::out|ios_base::trunc is automatically included in - * @p __mode. + * @c ios_base::out | @c ios_base::trunc is automatically included in + * @a __mode. * * Tip: When using std::string to hold the filename, you must use * .c_str() before passing it to this constructor. @@ -640,7 +640,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION * @param __s std::string specifying the filename. * @param __mode Open file in specified mode (see std::ios_base). * - * @c ios_base::out|ios_base::trunc is automatically included in + * @c ios_base::out | @c ios_base::trunc is automatically included in * @a __mode. */ explicit |

