Browse Source

Merge branch 'json-c-0.13' into json-c-0.13

pull/626/head
pointbre GitHub 5 years ago
parent
commit
a8899be02a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      linkhash.h

+ 3
- 3
linkhash.h View File

@@ -348,11 +348,11 @@ int lh_table_resize(struct lh_table *t, int new_size);
/**
* @deprecated Don't use this outside of linkhash.h:
*/
#if (!defined(_MSC_VER) && !defined(AIX_CC)) || (_MSC_VER > 1800)
#if (defined(AIX_CC) || (defined(_MSC_VER) && (_MSC_VER <= 1800)) )
/* VS2010 can't handle inline funcs, so skip it there */
#define _LH_INLINE inline
#else
#define _LH_INLINE
#else
#define _LH_INLINE inline
#endif

/**


Loading…
Cancel
Save