Author: julianfoad
Date: Wed Nov 15 08:16:21 2017
New Revision: 1815294
URL: http://svn.apache.org/viewvc?rev=1815294&view=rev
Log:
Don't warn where the shelving implementation uses SVN_EXPERIMENTAL functions.
* subversion/libsvn_client/shelve.c,
subversion/svn/shelve-cmd.c
Define SVN_EXPERIMENTAL as an empty macro before the #includes.
Modified:
subversion/trunk/subversion/libsvn_client/shelve.c
subversion/trunk/subversion/svn/shelve-cmd.c
Modified: subversion/trunk/subversion/libsvn_client/shelve.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/shelve.c?rev=1815294&r1=1815293&r2=1815294&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/shelve.c (original)
+++ subversion/trunk/subversion/libsvn_client/shelve.c Wed Nov 15 08:16:21 2017
@@ -23,9 +23,9 @@
/* ==================================================================== */
-
-
-/*** Includes. ***/
+/* We define this here to remove any further warnings about the usage of
+ experimental functions in this file. */
+#define SVN_EXPERIMENTAL
#include "svn_client.h"
#include "svn_wc.h"
Modified: subversion/trunk/subversion/svn/shelve-cmd.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/shelve-cmd.c?rev=1815294&r1=1815293&r2=1815294&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/shelve-cmd.c (original)
+++ subversion/trunk/subversion/svn/shelve-cmd.c Wed Nov 15 08:16:21 2017
@@ -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
+
#include "svn_client.h"
#include "svn_error_codes.h"
#include "svn_error.h"