You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/02/24 09:22:56 UTC

svn commit: r1293133 - /subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c

Author: stsp
Date: Fri Feb 24 08:22:56 2012
New Revision: 1293133

URL: http://svn.apache.org/viewvc?rev=1293133&view=rev
Log:
On the multi-layer-moves branch, add docstrings.

* subversion/libsvn_wc/wc_db.c
  (moved_node_t): Document each member of this structure.

Modified:
    subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c

Modified: subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c?rev=1293133&r1=1293132&r2=1293133&view=diff
==============================================================================
--- subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c Fri Feb 24 08:22:56 2012
@@ -6311,8 +6311,13 @@ struct op_delete_baton_t {
  * For details, see http://wiki.apache.org/subversion/MultiLayerMoves
  */
 struct moved_node_t {
+  /* The source of the move. */
   const char *local_relpath;
+
+  /* The move destination. */
   const char *moved_to_relpath;
+
+  /* The op-depth of the deleted node at the source of the move. */
   apr_int64_t op_depth;
 };