From: Vincent Pit Date: Fri, 11 Nov 2011 17:58:32 +0000 (+0100) Subject: Reorder the members of the a_op_info struct a bit X-Git-Tag: v0.11~16 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fautovivification.git;a=commitdiff_plain;h=0b4ae66b743ee623cdfdb7cdbea5c84338f9e3d9 Reorder the members of the a_op_info struct a bit --- diff --git a/autovivification.xs b/autovivification.xs index a45cda3..e36b8f5 100644 --- a/autovivification.xs +++ b/autovivification.xs @@ -134,11 +134,11 @@ START_MY_CXT #if A_WORKAROUND_REQUIRE_PROPAGATION typedef struct { - ptable *tbl; + ptable *tbl; #if A_HAS_PERL(5, 13, 2) CLONE_PARAMS *params; #else - CLONE_PARAMS params; + CLONE_PARAMS params; #endif } a_ptable_clone_ud; @@ -331,9 +331,9 @@ STATIC UV a_hint(pTHX) { /* ... op => info map ...................................................... */ typedef struct { - OP *(*old_pp)(pTHX); - UV flags; - void *next; + OP *(*old_pp)(pTHX); + void *next; + UV flags; } a_op_info; #define PTABLE_NAME ptable_map