[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1507044 -

From: Ben Reser <ben_at_reser.org>
Date: Thu, 25 Jul 2013 15:45:16 -0700

On Thu, Jul 25, 2013 at 3:37 PM, Bert Huijben <bert_at_qqmail.nl> wrote:
> If svn_hash_sets doesn't have a return value we could redefine it with
> a temporary variable (and catch some type warnings too)

Yup, apr_hash_set() has a void return. So we could still fix this
with the macro.

Does this look okay?
#define svn_hash_sets(ht, key_expression, val) \
  do { \
    const char *key = key_expression; \
    apr_hash_set(ht, key, strlen(key), val); \
  } while (0)
Received on 2013-07-26 00:45:52 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.