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 2011/04/18 15:31:28 UTC

svn commit: r1094563 - /subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Author: rhuijben
Date: Mon Apr 18 13:31:28 2011
New Revision: 1094563

URL: http://svn.apache.org/viewvc?rev=1094563&view=rev
Log:
* subversion/tests/libsvn_wc/op-depth-test.c
  (defines): Disable 21 warnings in the test structure initialization. I don't think we
    care about C89 standards in this file.

Modified:
    subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c

Modified: subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c?rev=1094563&r1=1094562&r2=1094563&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c Mon Apr 18 13:31:28 2011
@@ -45,6 +45,9 @@
 
 #include "../svn_test.h"
 
+#ifdef _MSC_VER
+#pragma warning(disable: 4221) /* nonstandard extension used */
+#endif
 
 /* Compare strings, like strcmp but either or both may be NULL which
  * compares equal to NULL and not equal to any non-NULL string. */