aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2013-12-03 12:58:15 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2013-12-03 12:58:15 +0000
commita566cb5e8151a272a21e91512957d182dc2ee24c (patch)
tree150ed368c7d28d5623010f71b379c94becca9807
parent3848839d3e2d112d397ef5c0edd5485acd932b42 (diff)
downloadgcc-a566cb5e8151a272a21e91512957d182dc2ee24c.zip
gcc-a566cb5e8151a272a21e91512957d182dc2ee24c.tar.gz
gcc-a566cb5e8151a272a21e91512957d182dc2ee24c.tar.bz2
fstream (basic_filebuf::open): Use preformatted text for table in Doxygen comment.
* include/std/fstream (basic_filebuf::open): Use preformatted text for table in Doxygen comment. From-SVN: r205631
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/std/fstream4
2 files changed, 8 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 4c564e8..912b89f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-03 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ * include/std/fstream (basic_filebuf::open): Use preformatted text
+ for table in Doxygen comment.
+
2013-12-03 Tim Shen <timshen91@gmail.com>
* regex_compiler.h: Add todo comment.
diff --git a/libstdc++-v3/include/std/fstream b/libstdc++-v3/include/std/fstream
index 48e5c3d..701247a 100644
--- a/libstdc++-v3/include/std/fstream
+++ b/libstdc++-v3/include/std/fstream
@@ -238,9 +238,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* given in @a __mode.
*
* Table 92, adapted here, gives the relation between openmode
- * combinations and the equivalent fopen() flags.
+ * combinations and the equivalent @c fopen() flags.
* (NB: lines app, in|out|app, in|app, binary|app, binary|in|out|app,
* and binary|in|app per DR 596)
+ * <pre>
* +---------------------------------------------------------+
* | ios_base Flag combination stdio equivalent |
* |binary in out trunc app |
@@ -265,6 +266,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* | + + + + a+b |
* | + + + a+b |
* +---------------------------------------------------------+
+ * </pre>
*/
__filebuf_type*
open(const char* __s, ios_base::openmode __mode);