You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2013/07/22 00:32:26 UTC

svn commit: r1505485 - /subversion/trunk/subversion/svn_private_config.hw

Author: gstein
Date: Sun Jul 21 22:32:26 2013
New Revision: 1505485

URL: http://svn.apache.org/r1505485
Log:
Followup to r1505482 and friends:

The SVN__PREDICT_* macros should be the same across platforms. Always
take an argument.

* subversion/svn_private_config.hw:
  (SVN__PREDICT_*): take an argument. evaluate to the same.

Modified:
    subversion/trunk/subversion/svn_private_config.hw

Modified: subversion/trunk/subversion/svn_private_config.hw
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn_private_config.hw?rev=1505485&r1=1505484&r2=1505485&view=diff
==============================================================================
--- subversion/trunk/subversion/svn_private_config.hw (original)
+++ subversion/trunk/subversion/svn_private_config.hw Sun Jul 21 22:32:26 2013
@@ -113,8 +113,8 @@
 # define SVN__PREVENT_INLINE
 #endif
 
-#define SVN__PREDICT_TRUE
-#define SVN__PREDICT_FALSE
+#define SVN__PREDICT_TRUE(x)  (x)
+#define SVN__PREDICT_FALSE(x)  (x)
 
 #endif /* SVN_PRIVATE_CONFIG_HW */