From a172b7cafd7464c830da793e0bd746b795738075 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 25 Apr 2024 19:42:56 -0700 Subject: [PATCH] Moved include [skip ci] --- src/bitutils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitutils.h b/src/bitutils.h index 66924bf..db362e1 100644 --- a/src/bitutils.h +++ b/src/bitutils.h @@ -3,13 +3,13 @@ #include "postgres.h" -#include "halfvec.h" /* for USE_DISPATCH and USE_TARGET_CLONES */ - /* Check version in first header */ #if PG_VERSION_NUM < 120000 #error "Requires PostgreSQL 12+" #endif +#include "halfvec.h" /* for USE_DISPATCH and USE_TARGET_CLONES */ + #if defined(USE_DISPATCH) #define BIT_DISPATCH #endif