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 2013/02/01 10:25:05 UTC

svn commit: r1441355 - /subversion/trunk/subversion/libsvn_client/repos_diff.c

Author: rhuijben
Date: Fri Feb  1 09:25:04 2013
New Revision: 1441355

URL: http://svn.apache.org/viewvc?rev=1441355&view=rev
Log:
* subversion/libsvn_client/repos_diff.c
  (diff_notify_baton_t): Following up on r1441352, remove unused struct.
    (Just following dumb compiler warnings is not the solution)

Modified:
    subversion/trunk/subversion/libsvn_client/repos_diff.c

Modified: subversion/trunk/subversion/libsvn_client/repos_diff.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/repos_diff.c?rev=1441355&r1=1441354&r2=1441355&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/repos_diff.c (original)
+++ subversion/trunk/subversion/libsvn_client/repos_diff.c Fri Feb  1 09:25:04 2013
@@ -1311,13 +1311,6 @@ fetch_base_func(const char **filename,
   return SVN_NO_ERROR;
 }
 
-/* Baton for diff_state_* functions */
-struct diff_notify_baton_t
-{
-  /* If not NULL collects the absent paths */
-  apr_hash_t *absent_relpaths;
-};
-
 /* Create a repository diff editor and baton.  */
 svn_error_t *
 svn_client__get_diff_editor2(const svn_delta_editor_t **editor,