From 8fd44212b5a0627728304fdec8e7e2aba9e81f48 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 13 Dec 2020 13:00:22 +0000 Subject: Add missing doxygen comments --- libadhocutil/case_less.h | 2 ++ libadhocutil/uriParse.h | 1 + 2 files changed, 3 insertions(+) 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 namespace AdHoc { + /// STL compatible case-insentive less comparator wrapping strncasecmp struct case_less { + /// Compare a and b template 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. -- cgit v1.2.3