]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Reorder the members of the a_op_info struct a bit
authorVincent Pit <vince@profvince.com>
Fri, 11 Nov 2011 17:58:32 +0000 (18:58 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 11 Nov 2011 17:58:32 +0000 (18:58 +0100)
autovivification.xs

index a45cda3f4de46a6c82a4d0f2de1536f5a7974ac0..e36b8f50dfc6f1ed7bdfec6f3c6d3a0b1df5a339 100644 (file)
@@ -134,11 +134,11 @@ START_MY_CXT
 #if A_WORKAROUND_REQUIRE_PROPAGATION
 
 typedef struct {
 #if A_WORKAROUND_REQUIRE_PROPAGATION
 
 typedef struct {
- ptable *tbl;
+ ptable       *tbl;
 #if A_HAS_PERL(5, 13, 2)
  CLONE_PARAMS *params;
 #else
 #if A_HAS_PERL(5, 13, 2)
  CLONE_PARAMS *params;
 #else
- CLONE_PARAMS params;
+ CLONE_PARAMS  params;
 #endif
 } a_ptable_clone_ud;
 
 #endif
 } a_ptable_clone_ud;
 
@@ -331,9 +331,9 @@ STATIC UV a_hint(pTHX) {
 /* ... op => info map ...................................................... */
 
 typedef struct {
 /* ... 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
 } a_op_info;
 
 #define PTABLE_NAME        ptable_map