You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/05/17 21:56:52 UTC

svn commit: r1483964 - /subversion/trunk/subversion/include/svn_types.h

Author: breser
Date: Fri May 17 19:56:51 2013
New Revision: 1483964

URL: http://svn.apache.org/r1483964
Log:
* subversion/include/svn_types.h:
  (svn_tristate_t): Add documentation entries for the enum values.  This shuts
    up doxygen warnings about them being targets for links.

Modified:
    subversion/trunk/subversion/include/svn_types.h

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1483964&r1=1483963&r2=1483964&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Fri May 17 19:56:51 2013
@@ -272,8 +272,11 @@ svn_node_kind_from_word(const char *word
  * @since New in 1.7. */
 typedef enum svn_tristate_t
 {
+  /** state known to be false (the constant does not evaulate to false) */
   svn_tristate_false = 2,
+  /** state known to be true */
   svn_tristate_true,
+  /** state could be true or false */
   svn_tristate_unknown
 } svn_tristate_t;