You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/10/28 11:48:30 UTC

svn commit: r1536308 - /subversion/trunk/subversion/include/svn_types.h

Author: brane
Date: Mon Oct 28 10:48:30 2013
New Revision: 1536308

URL: http://svn.apache.org/r1536308
Log:
Apparently MSC doesn't understand implicit forward declarations.

* subversion/include/svn_types.h
  (struct svn_null_pointer_constant_stdarg_sentinel_t): Forward-delcare the
   struct used by the SVN_VA_NULL macro.

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

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1536308&r1=1536307&r2=1536308&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Mon Oct 28 10:48:30 2013
@@ -131,6 +131,9 @@ typedef int svn_boolean_t;
 
 
 
+/** Declaration of the null pointer constant type. */
+struct svn_null_pointer_constant_stdarg_sentinel_t;
+
 /** Null pointer constant used as a sentinel in variable argument lists. */
 #define SVN_VA_NULL ((struct svn_null_pointer_constant_stdarg_sentinel_t*)0)
 /* See? (char*)NULL -- They have the same length, but the cast looks ugly. */