From: Ronen Friedman Date: Sun, 6 Dec 2020 10:04:36 +0000 (+0200) Subject: rgw/lua: fixing incompatible declarations of CephContext X-Git-Tag: v17.0.0~365^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e65e5807bac06e7193c5ee8a5390cb3b1d282e72;p=ceph-ci.git rgw/lua: fixing incompatible declarations of CephContext Existing forward declaration breaks OSD compilation (clang) Signed-off-by: Ronen Friedman --- 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 {