Author: julianfoad
Date: Wed Sep 12 16:46:51 2018
New Revision: 1840722
URL: http://svn.apache.org/viewvc?rev=1840722&view=rev
Log:
* subversion/svn/info-cmd.c
Define SVN_EXPERIMENTAL at top of file to suppress warnings where we
knowingly call experimental APIs.
Modified:
subversion/trunk/subversion/svn/info-cmd.c
Modified: subversion/trunk/subversion/svn/info-cmd.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/info-cmd.c?rev=1840722&r1=1840721&r2=1840722&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/info-cmd.c (original)
+++ subversion/trunk/subversion/svn/info-cmd.c Wed Sep 12 16:46:51 2018
@@ -21,6 +21,10 @@
* ====================================================================
*/
+/* We define this here to remove any further warnings about the usage of
+ experimental functions in this file. */
+#define SVN_EXPERIMENTAL
+
/* ==================================================================== */