You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/08/10 16:21:54 UTC

svn commit: r984047 - /subversion/trunk/subversion/include/private/svn_wc_private.h

Author: rhuijben
Date: Tue Aug 10 14:21:54 2010
New Revision: 984047

URL: http://svn.apache.org/viewvc?rev=984047&view=rev
Log:
* subversion/include/private/svn_wc_private.h
  (SVN_WC__LEVELS_TO_LOCK_FROM_DEPTH): Remove unused define.

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

Modified: subversion/trunk/subversion/include/private/svn_wc_private.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_wc_private.h?rev=984047&r1=984046&r2=984047&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_wc_private.h (original)
+++ subversion/trunk/subversion/include/private/svn_wc_private.h Tue Aug 10 14:21:54 2010
@@ -55,15 +55,6 @@ svn_wc__path_switched(svn_boolean_t *swi
                       apr_pool_t *scratch_pool);
 
 
-/* Return the shallowest sufficient @c levels_to_lock value for @a depth;
- * see the @a levels_to_lock parameter of svn_wc_adm_open3() and
- * similar functions for more information.
- */
-#define SVN_WC__LEVELS_TO_LOCK_FROM_DEPTH(depth)              \
-  (((depth) == svn_depth_empty || (depth) == svn_depth_files) \
-   ? 0 : (((depth) == svn_depth_immediates) ? 1 : -1))
-
-
 /* Return TRUE iff CLHASH (a hash whose keys are const char *
    changelist names) is NULL or if LOCAL_ABSPATH is part of a changelist in
    CLHASH. */