From e65e5807bac06e7193c5ee8a5390cb3b1d282e72 Mon Sep 17 00:00:00 2001 From: Ronen Friedman Date: Sun, 6 Dec 2020 12:04:36 +0200 Subject: [PATCH] rgw/lua: fixing incompatible declarations of CephContext Existing forward declaration breaks OSD compilation (clang) Signed-off-by: Ronen Friedman --- src/rgw/rgw_lua_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_lua_utils.h b/src/rgw/rgw_lua_utils.h index e3a7a132cb1..ffd6e701980 100644 --- a/src/rgw/rgw_lua_utils.h +++ b/src/rgw/rgw_lua_utils.h @@ -6,7 +6,7 @@ #include #include -class CephContext; +#include "include/common_fwd.h" namespace rgw::lua { -- 2.47.3