You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2021/01/27 04:00:19 UTC

svn commit: r1885931 - in /subversion/branches/1.14.x: ./ STATUS subversion/include/private/svn_sorts_private.h

Author: svn-role
Date: Wed Jan 27 04:00:18 2021
New Revision: 1885931

URL: http://svn.apache.org/viewvc?rev=1885931&view=rev
Log:
Merge r1877794 from trunk:

 * r1877794
   Use Doxygen comment leader for comments with doxygen syntax.
   Justification:
     Improve $EDITOR's syntax highlighting.
   Votes:
     +0: danielsh
     +1: brane, jamessan

Modified:
    subversion/branches/1.14.x/   (props changed)
    subversion/branches/1.14.x/STATUS
    subversion/branches/1.14.x/subversion/include/private/svn_sorts_private.h

Propchange: subversion/branches/1.14.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1877794

Modified: subversion/branches/1.14.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/STATUS?rev=1885931&r1=1885930&r2=1885931&view=diff
==============================================================================
--- subversion/branches/1.14.x/STATUS (original)
+++ subversion/branches/1.14.x/STATUS Wed Jan 27 04:00:18 2021
@@ -52,12 +52,3 @@ Veto-blocked changes:
 
 Approved changes:
 =================
-
- * r1877794
-   Use Doxygen comment leader for comments with doxygen syntax.
-   Justification:
-     Improve $EDITOR's syntax highlighting.
-   Votes:
-     +0: danielsh
-     +1: brane, jamessan
-

Modified: subversion/branches/1.14.x/subversion/include/private/svn_sorts_private.h
URL: http://svn.apache.org/viewvc/subversion/branches/1.14.x/subversion/include/private/svn_sorts_private.h?rev=1885931&r1=1885930&r2=1885931&view=diff
==============================================================================
--- subversion/branches/1.14.x/subversion/include/private/svn_sorts_private.h (original)
+++ subversion/branches/1.14.x/subversion/include/private/svn_sorts_private.h Wed Jan 27 04:00:18 2021
@@ -80,7 +80,7 @@ svn_sort__array(apr_array_header_t *arra
                 int (*comparison_func)(const void *,
                                        const void *));
 
-/* Return the lowest index at which the element @a *key should be inserted into
+/** Return the lowest index at which the element @a *key should be inserted into
  * the array @a array, according to the ordering defined by @a compare_func.
  * The array must already be sorted in the ordering defined by @a compare_func.
  * @a compare_func is defined as for the C stdlib function bsearch(); the
@@ -93,7 +93,7 @@ svn_sort__bsearch_lower_bound(const apr_
                               const void *key,
                               int (*compare_func)(const void *, const void *));
 
-/* Find the lowest index at which the element @a *key should be inserted into
+/** Find the lowest index at which the element @a *key should be inserted into
  * the array @a array, according to the ordering defined by @a compare_func.
  * The array must already be sorted in the ordering defined by @a compare_func.
  * @a compare_func is defined as for the C stdlib function bsearch(); the
@@ -116,7 +116,7 @@ svn_sort__array_lookup(const apr_array_h
                        int (*compare_func)(const void *, const void *));
 
 
-/* Insert a shallow copy of @a *new_element into the array @a array at the index
+/** Insert a shallow copy of @a *new_element into the array @a array at the index
  * @a insert_index, growing the array and shuffling existing elements along to
  * make room.
  *
@@ -131,7 +131,7 @@ svn_sort__array_insert2(apr_array_header
                         int insert_index);
 
 
-/* Remove @a elements_to_delete elements starting at @a delete_index from the
+/** Remove @a elements_to_delete elements starting at @a delete_index from the
  * array @a arr.
  *
  * Raise an error if the indexes to delete extends outside the array bounds
@@ -144,7 +144,7 @@ svn_sort__array_delete2(apr_array_header
                         int delete_index,
                         int elements_to_delete);
 
-/* Reverse the order of elements in @a array, in place.
+/** Reverse the order of elements in @a array, in place.
  *
  * @note Private. For use by Subversion's own code only.
  */