From dfe0a89785e70fdb3c75196b54ae05f006a35ca3 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 26 May 2015 16:00:32 +0100 Subject: [PATCH] catacomb-python.h: Promote `util' to the head of the list. If anything needs to prepare for other modules, it's common utilities. --- catacomb-python.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catacomb-python.h b/catacomb-python.h index 08c8e66..bf2a840 100644 --- a/catacomb-python.h +++ b/catacomb-python.h @@ -188,11 +188,11 @@ { #name, ty, offsetof(MEMBERSTRUCT, name), f, doc }, #define MODULES(_) \ + _(util) \ _(bytestring) _(buffer) \ _(rand) _(algorithms) _(pubkey) _(pgen) \ _(mp) _(field) _(ec) _(group) \ - _(passphrase) _(share) _(key) \ - _(util) + _(passphrase) _(share) _(key) #define DOMODINIT(m) m##_pyinit(); #define DOMODINSERT(m) m##_pyinsert(mod); #define INIT_MODULES do { MODULES(DOMODINIT) } while (0) -- 2.11.0