You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2016/01/09 20:27:52 UTC

svn commit: r1723878 - /subversion/branches/fs-node-api/subversion/include/svn_fs.h

Author: kotkov
Date: Sat Jan  9 19:27:52 2016
New Revision: 1723878

URL: http://svn.apache.org/viewvc?rev=1723878&view=rev
Log:
On 'fs-node-api' branch: Add a couple of missing @since markers in the
docstrings.

* subversion/include/svn_fs.h
  (svn_fs_node_fs, svn_fs_open_node, svn_fs_node_kind,
   svn_fs_node_created_rev2, svn_fs_file_length2): Add missing @since 1.10
   markers.

Modified:
    subversion/branches/fs-node-api/subversion/include/svn_fs.h

Modified: subversion/branches/fs-node-api/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/branches/fs-node-api/subversion/include/svn_fs.h?rev=1723878&r1=1723877&r2=1723878&view=diff
==============================================================================
--- subversion/branches/fs-node-api/subversion/include/svn_fs.h (original)
+++ subversion/branches/fs-node-api/subversion/include/svn_fs.h Sat Jan  9 19:27:52 2016
@@ -1633,7 +1633,10 @@ svn_fs_paths_changed(apr_hash_t **change
  */
 typedef struct svn_fs_node_t svn_fs_node_t;
 
-/** Return the filesystem to which @a node belongs.  */
+/** Return the filesystem to which @a node belongs.
+ *
+ * @since New in 1.10.
+ */
 svn_fs_t *
 svn_fs_node_fs(svn_fs_node_t *node);
 
@@ -1642,6 +1645,8 @@ svn_fs_node_fs(svn_fs_node_t *node);
  * and @a ignore_enoent is non-zero. Returns error otherwise.
  * Allocats @a *node_p in @a result_pool. Use @a scratch_pool for temporary
  * allocation.
+ *
+ * @since New in 1.10.
  */
 svn_error_t *
 svn_fs_open_node(svn_fs_node_t **node_p,
@@ -1665,6 +1670,8 @@ svn_fs_check_path(svn_node_kind_t *kind_
 
 /** Set @a *kind_p to the type of node @a node.
  * Use @a scratch_pool for temporary allocation.
+ *
+ * @since New in 1.10.
  */
 svn_error_t *
 svn_fs_node_kind(svn_node_kind_t *kind_p,
@@ -1827,6 +1834,8 @@ svn_fs_node_relation(svn_fs_node_relatio
  * transaction was based.
  *
  * Use @a scratch_pool for any temporary allocations.
+ *
+ * @since New in 1.10.
  */
 svn_error_t *
 svn_fs_node_created_rev2(svn_revnum_t *revision,
@@ -2337,6 +2346,8 @@ svn_fs_revision_link(svn_fs_root_t *from
 
 /** Set @a *length_p to the length of the file @a node, in bytes.
  * Do any necessary temporary allocation in @a pool.
+ *
+ * @since New in 1.10.
  */
 svn_error_t *
 svn_fs_file_length2(svn_filesize_t *length_p,