Browse Source

[2017] Several more Doxygen warnings removed.

Tomek Mrugalski 13 years ago
parent
commit
6719c7e0be

+ 1 - 1
src/lib/dns/rdata/in_1/srv_33.cc

@@ -61,7 +61,7 @@ struct SRVImpl {
 ///
 /// <b>Exceptions</b>
 ///
-/// If <Target> is not a valid domain name, a corresponding exception from
+/// If &lt;Target&gt; is not a valid domain name, a corresponding exception from
 /// the \c Name class will be thrown;
 /// if %any of the other bullet points above is not met, an exception of
 /// class \c InvalidRdataText will be thrown.

+ 1 - 1
src/lib/log/compiler/message.cc

@@ -119,7 +119,7 @@ currentTime() {
 
 /// \brief Create Header Sentinel
 ///
-/// Given the name of a file, create an #ifdef sentinel name.  The name is
+/// Given the name of a file, create an \#ifdef sentinel name.  The name is
 /// __<name>_<ext>, where &lt;name&gt; is the name of the file, and &lt;ext&gt;
 /// is the extension less the leading period.  The sentinel will be upper-case.
 ///

+ 9 - 0
src/lib/log/message_exception.h

@@ -38,6 +38,9 @@ public:
 
     /// \brief Constructor
     ///
+    /// \param file Filename where the exception occurred.
+    /// \param line Line where exception occurred.
+    /// \param what Text description of the problem.
     /// \param id Message identification.
     /// \param lineno Line number on which error occurred (if > 0).
     MessageException(const char* file, size_t line, const char* what,
@@ -51,6 +54,9 @@ public:
 
     /// \brief Constructor
     ///
+    /// \param file Filename where the exception occurred.
+    /// \param line Line where exception occurred.
+    /// \param what Text description of the problem.
     /// \param id Message identification.
     /// \param arg1 First message argument.
     /// \param lineno Line number on which error occurred (if > 0).
@@ -66,6 +72,9 @@ public:
 
     /// \brief Constructor
     ///
+    /// \param file Filename where the exception occurred.
+    /// \param line Line where exception occurred.
+    /// \param what Text description of the problem.
     /// \param id Message identification.
     /// \param arg1 First message argument.
     /// \param arg2 Second message argument.