From 49bff412edd9eb226e146f6e4db7b5a8e843bd1f Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 16 Feb 2018 12:14:08 -0500 Subject: Remove some inappropriate #includes. Other header files should never #include postgres.h (nor postgres_fe.h, nor c.h), per project policy. Also, there's no need for any backend .c file to explicitly include elog.h or palloc.h, because postgres.h pulls those in already. Extracted from a larger patch by Kyotaro Horiguchi. The rest of the removals he suggests require more study, but these are no-brainers. Discussion: https://postgr.es/m/20180215.200447.209320006.horiguchi.kyotaro@lab.ntt.co.jp --- src/include/lib/knapsack.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/include/lib/knapsack.h') diff --git a/src/include/lib/knapsack.h b/src/include/lib/knapsack.h index f2a61675cb7..9f17004d48e 100644 --- a/src/include/lib/knapsack.h +++ b/src/include/lib/knapsack.h @@ -8,7 +8,6 @@ #ifndef KNAPSACK_H #define KNAPSACK_H -#include "postgres.h" #include "nodes/bitmapset.h" extern Bitmapset *DiscreteKnapsack(int max_weight, int num_items, -- cgit v1.2.3