summaryrefslogtreecommitdiff
path: root/include/apr_version.h
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
commit05e4db1ad0daefbe23c7bd4bf95dcc26117791ee (patch)
tree0706c9dcb9d80ee34b95fef0edcc656533723049 /include/apr_version.h
parent4af567a62faf58f6758c4c744b1dad30520ef7a8 (diff)
downloadapr-05e4db1ad0daefbe23c7bd4bf95dcc26117791ee.tar.gz
Go through doxygen output and remove as many errors and warnings as I could.
No code changes. (Note removal of #define duplication in apr_poll.h/apr_network_io.h of the APR_POLL* values. This appears to have been an oversight and is now just in apr_poll.h) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_version.h')
-rw-r--r--include/apr_version.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_version.h b/include/apr_version.h
index 92bd1d3e0..0d3db8bfb 100644
--- a/include/apr_version.h
+++ b/include/apr_version.h
@@ -121,10 +121,10 @@ extern "C" {
* structure.
*/
typedef struct {
- int major;
- int minor;
- int patch;
- int is_dev;
+ int major; /**< major number */
+ int minor; /**< minor number */
+ int patch; /**< patch number */
+ int is_dev; /**< is development (1 or 0) */
} apr_version_t;
/**