You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/04/27 23:05:11 UTC

svn commit: r1097240 - in /subversion/trunk/subversion/include: svn_client.h svn_types.h

Author: hwright
Date: Wed Apr 27 21:05:10 2011
New Revision: 1097240

URL: http://svn.apache.org/viewvc?rev=1097240&view=rev
Log:
Move a referenced macro to the proper header file.

* subversion/include/svn_types.h
  (SVN_INFO_SIZE_UNKNOWN): Moved here...
 
* subversion/include/svn_client.h
  (SVN_INFO_SIZE_UNKNOWN): ...from here.

Modified:
    subversion/trunk/subversion/include/svn_client.h
    subversion/trunk/subversion/include/svn_types.h

Modified: subversion/trunk/subversion/include/svn_client.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_client.h?rev=1097240&r1=1097239&r2=1097240&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_client.h (original)
+++ subversion/trunk/subversion/include/svn_client.h Wed Apr 27 21:05:10 2011
@@ -5116,13 +5116,6 @@ svn_client_unlock(const apr_array_header
  * @{
  */
 
-/** The size of the file is unknown.
- * Used as value in fields of type @c apr_size_t.
- *
- * @since New in 1.5
- */
-#define SVN_INFO_SIZE_UNKNOWN ((apr_size_t) -1)
-
 /**
  * A structure which describes various system-generated metadata about
  * a working-copy path or URL.

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1097240&r1=1097239&r2=1097240&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Wed Apr 27 21:05:10 2011
@@ -1199,6 +1199,13 @@ typedef unsigned long svn_linenum_t;
 
 /** @} */
 
+/** The size of the file is unknown.
+ * Used as value in fields of type @c apr_size_t.
+ *
+ * @since New in 1.5
+ */
+#define SVN_INFO_SIZE_UNKNOWN ((apr_size_t) -1)
+
 
 /** Forward declaration, for the purpose of the #svn_info2_t struct. */
 struct svn_wc_info_t;