Skip to content

Commit

Permalink
Fix various Doxygen warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
SadieCat committed Feb 27, 2015
1 parent c5a85f6 commit c38d29f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/BSDmakefile
/GNUmakefile
/build
/docs/doxygen
/inspircd
/org.inspircd.plist
/run
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ many different users.

* [Website](http://inspircd.org)
* [GitHub](https://github.com/inspircd)
* IRC: #inspircd on irc.inspircd.org
* IRC: \#inspircd on irc.inspircd.org
2 changes: 2 additions & 0 deletions include/dns.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class CoreExport DNSResult
* @param res The request result, a hostname or IP
* @param timetolive The request time-to-live
* @param orig The original request, a hostname or IP
* @param qt The type of DNS query this result represents.
*/
DNSResult(int i, const std::string &res, unsigned long timetolive, const std::string &orig, QueryType qt = DNS_QUERY_NONE) : id(i), result(res), ttl(timetolive), original(orig), type(qt) { }
};
Expand All @@ -118,6 +119,7 @@ class CoreExport CachedQuery

/** Build a cached query
* @param res The result data, an IP or hostname
* @param qt The type of DNS query this instance represents.
* @param ttl The time-to-live value of the query result
*/
CachedQuery(const std::string &res, QueryType qt, unsigned int ttl);
Expand Down

0 comments on commit c38d29f

Please sign in to comment.