You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Branko Čibej <br...@wandisco.com> on 2015/03/04 10:10:06 UTC

Re: svn commit: r1663896 - in /subversion/trunk/subversion: include/svn_hash.h libsvn_subr/hash.c

On 04.03.2015 10:03, julianfoad@apache.org wrote:
> Author: julianfoad
> Date: Wed Mar  4 09:03:13 2015
> New Revision: 1663896
>
> URL: http://svn.apache.org/r1663896
> Log:
> Redefine the svn_hash_sets macro to match the way svn_hash_gets is defined,
> thus avoiding a backward compatibility problem. A follow-up to r1663760 and
[...]
> +#ifdef SVN_DEBUG
> +#define svn_hash_sets(ht, key, val) \
> +            svn_hash__sets(ht, key, val)
> +#else
> +#define svn_hash_gets(ht, key) \
> +            apr_hash_set(ht, svn_hash__key, APR_HASH_KEY_STRING, val)
> +#endif

... and watch the buildbots go red from embarrassment? :)

-- Brane