aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/std/fstream
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2012-03-08 05:20:52 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2012-03-08 05:20:52 +0000
commitd8dd52a990a5aefa3a865333a077873c3e5d14be (patch)
treefdcf4dd7fd61e4508ed2ae9145fe214fc561c00b /libstdc++-v3/include/std/fstream
parent2a4368af972061006fc4cb2d8957611ebeb65d65 (diff)
downloadgcc-d8dd52a990a5aefa3a865333a077873c3e5d14be.zip
gcc-d8dd52a990a5aefa3a865333a077873c3e5d14be.tar.gz
gcc-d8dd52a990a5aefa3a865333a077873c3e5d14be.tar.bz2
user.cfg.in: Update to Doxygen 1.8.0.
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. Co-Authored-By: Ramana Radhakrishnan <ramana@gcc.gnu.org> From-SVN: r185094
Diffstat (limited to 'libstdc++-v3/include/std/fstream')
-rw-r--r--libstdc++-v3/include/std/fstream8
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/std/fstream b/libstdc++-v3/include/std/fstream
index 65de272..b4a86a1 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