You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2013/03/21 16:15:11 UTC

svn commit: r1459353 - /subversion/trunk/subversion/include/private/svn_dep_compat.h

Author: cmpilato
Date: Thu Mar 21 15:15:10 2013
New Revision: 1459353

URL: http://svn.apache.org/r1459353
Log:
* subversion/include/private/svn_dep_compat.h
  (svn_hash__clear): This function is not conditionally defined, so
    don't conditionally define its prototype, either.

Modified:
    subversion/trunk/subversion/include/private/svn_dep_compat.h

Modified: subversion/trunk/subversion/include/private/svn_dep_compat.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_dep_compat.h?rev=1459353&r1=1459352&r2=1459353&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_dep_compat.h (original)
+++ subversion/trunk/subversion/include/private/svn_dep_compat.h Thu Mar 21 15:15:10 2013
@@ -66,8 +66,8 @@ extern "C" {
  * If we don't have a recent enough APR, emulate the behavior of the
  * apr_hash_clear() API.
  */
-#if !APR_VERSION_AT_LEAST(1,3,0)
 void svn_hash__clear(struct apr_hash_t *ht);
+#if !APR_VERSION_AT_LEAST(1,3,0)
 #define apr_hash_clear(ht)           svn_hash__clear(ht)
 #endif