From: Mathieu Desnoyers Date: Wed, 28 Oct 2015 19:57:22 +0000 (-0400) Subject: Fix: rculfhash only needs to include urcu-pointers.h X-Git-Tag: v0.10.0~63 X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=95747f9e8c005c716d6e7f216e8fd9b66871dbff Fix: rculfhash only needs to include urcu-pointers.h rculfhash is not meant to use a specific urcu flavor, but rather receive the flavor to use as parameter to _cds_lfht_new(). All we need is the API of urcu-pointers.h, so include that instead. Signed-off-by: Mathieu Desnoyers --- diff --git a/rculfhash.c b/rculfhash.c index 6a41b92..3e78731 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -264,10 +264,11 @@ #include #include #include +#include #include "config.h" #include "compat-getcpu.h" -#include +#include #include #include #include