aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2018-09-05 16:18:16 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2018-09-05 16:18:16 +0100
commitcfaa1c89088155ae4d249b7a6659017fc8864f76 (patch)
treef188b0fa40718ffa30ef7e89b9c238448bc847ff
parent24c49431499bcb462aeee41e027a3dac25e934b3 (diff)
downloadgcc-cfaa1c89088155ae4d249b7a6659017fc8864f76.zip
gcc-cfaa1c89088155ae4d249b7a6659017fc8864f76.tar.gz
gcc-cfaa1c89088155ae4d249b7a6659017fc8864f76.tar.bz2
* libsupc++/cxxabi.h (__cxa_demangle): Clarify doxygen comment.
From-SVN: r264127
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/libsupc++/cxxabi.h5
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 998ea63..3de9031 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2018-09-05 Jonathan Wakely <jwakely@redhat.com>
+
+ * libsupc++/cxxabi.h (__cxa_demangle): Clarify doxygen comment.
+
2018-09-03 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/78179
diff --git a/libstdc++-v3/libsupc++/cxxabi.h b/libstdc++-v3/libsupc++/cxxabi.h
index 1bcf128..bf14085 100644
--- a/libstdc++-v3/libsupc++/cxxabi.h
+++ b/libstdc++-v3/libsupc++/cxxabi.h
@@ -165,10 +165,11 @@ namespace __cxxabiv1
* in that case, the demangled name is placed in a region of memory
* allocated with malloc.
*
- * @param __length If @a __length is non-NULL, the length of the
+ * @param __length If @a __length is non-null, the length of the
* buffer containing the demangled name is placed in @a *__length.
*
- * @param __status @a *__status is set to one of the following values:
+ * @param __status If @a __status is non-null, @a *__status is set to
+ * one of the following values:
* 0: The demangling operation succeeded.
* -1: A memory allocation failure occurred.
* -2: @a mangled_name is not a valid name under the C++ ABI mangling rules.