summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-12-13 13:00:22 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-12-13 13:00:22 +0000
commit8fd44212b5a0627728304fdec8e7e2aba9e81f48 (patch)
tree41c617a9f0cb155568dcfd1779730ddd4c1b30aa
parentUpdate Doxyfile (diff)
downloadlibadhocutil-8fd44212b5a0627728304fdec8e7e2aba9e81f48.tar.bz2
libadhocutil-8fd44212b5a0627728304fdec8e7e2aba9e81f48.tar.xz
libadhocutil-8fd44212b5a0627728304fdec8e7e2aba9e81f48.zip
Add missing doxygen commentslibadhocutil-0.8.3
-rw-r--r--libadhocutil/case_less.h2
-rw-r--r--libadhocutil/uriParse.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/libadhocutil/case_less.h b/libadhocutil/case_less.h
index fbe3d3b..ee7147d 100644
--- a/libadhocutil/case_less.h
+++ b/libadhocutil/case_less.h
@@ -5,7 +5,9 @@
#include <cstring>
namespace AdHoc {
+ /// STL compatible case-insentive less comparator wrapping strncasecmp
struct case_less {
+ /// Compare a and b
template<typename A, typename B>
inline bool
operator()(const A & a, const B & b) const
diff --git a/libadhocutil/uriParse.h b/libadhocutil/uriParse.h
index f0c3d49..7c1ffb7 100644
--- a/libadhocutil/uriParse.h
+++ b/libadhocutil/uriParse.h
@@ -44,6 +44,7 @@ namespace AdHoc {
/// Constructor accepting what went wrong and the URI being parsed.
InvalidUri(std::string err, std::string uri);
+ /// Get the exception message
std::string message() const noexcept override;
/// The parse error.