You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2015/03/04 22:10:44 UTC

svn commit: r1664151 - /subversion/trunk/subversion/include/svn_hash.h

Author: danielsh
Date: Wed Mar  4 21:10:43 2015
New Revision: 1664151

URL: http://svn.apache.org/r1664151
Log:
* subversion/include/svn_hash.h
  (svn_hash_gets, svn_hash_sets): Move docstrings to the non-SVN_DEBUG block
    so doxygen sees them.  No code change occurred.

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

Modified: subversion/trunk/subversion/include/svn_hash.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_hash.h?rev=1664151&r1=1664150&r2=1664151&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_hash.h (original)
+++ subversion/trunk/subversion/include/svn_hash.h Wed Mar  4 21:10:43 2015
@@ -252,14 +252,14 @@ svn_hash_from_cstring_keys(apr_hash_t **
 void *
 svn_hash__gets(apr_hash_t *ht, const char *key);
 
+#define svn_hash_gets(ht, key) \
+            svn_hash__gets(ht, key)
+#else
 /** Shortcut for apr_hash_get() with a const char * key.
  *
  * @since New in 1.8.
  */
 #define svn_hash_gets(ht, key) \
-            svn_hash__gets(ht, key)
-#else
-#define svn_hash_gets(ht, key) \
             apr_hash_get(ht, key, APR_HASH_KEY_STRING)
 #endif
 
@@ -267,14 +267,14 @@ svn_hash__gets(apr_hash_t *ht, const cha
 void
 svn_hash__sets(apr_hash_t *ht, const char *key, const void *value);
 
+#define svn_hash_sets(ht, key, val) \
+            svn_hash__sets(ht, key, val)
+#else
 /** Shortcut for apr_hash_set() with a const char * key.
  *
  * @since New in 1.8.
  */
 #define svn_hash_sets(ht, key, val) \
-            svn_hash__sets(ht, key, val)
-#else
-#define svn_hash_sets(ht, key, val) \
             apr_hash_set(ht, key, APR_HASH_KEY_STRING, val)
 #endif