From: Vincent Pit Date: Thu, 14 May 2015 19:59:57 +0000 (+0200) Subject: Add a missing aTHX for Win32 builds X-Git-Tag: v0.15~2 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=787fc43fb63cbbbefabd3cb51bc7c2f923e16a9c Add a missing aTHX for Win32 builds --- diff --git a/autovivification.xs b/autovivification.xs index eb1cbbc..528b13b 100644 --- a/autovivification.xs +++ b/autovivification.xs @@ -491,6 +491,7 @@ typedef struct { /* PerlMemShared_free() needs the [ap]PTBLMS_? default values */ #define ptable_map_store(T, K, V) ptable_map_store(aPTBLMS_ (T), (K), (V)) #define ptable_map_delete(T, K) ptable_map_delete(aPTBLMS_ (T), (K)) +#define ptable_map_free(T) ptable_map_free(aPTBLMS_ (T)) static ptable *a_op_map = NULL;