From: Kefu Chai Date: Wed, 25 Jul 2018 16:07:32 +0000 (+0800) Subject: tools/ceph_dencoder: use full path for including headers X-Git-Tag: v14.0.1~768^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F23228%2Fhead;p=ceph.git tools/ceph_dencoder: use full path for including headers Signed-off-by: Kefu Chai --- diff --git a/src/tools/ceph_dencoder.cc b/src/tools/ceph_dencoder.cc index 68cdc142b8c8..74f3ca34f684 100644 --- a/src/tools/ceph_dencoder.cc +++ b/src/tools/ceph_dencoder.cc @@ -33,7 +33,7 @@ #define TYPE_FEATUREFUL_NOCOPY(t) #define TYPE_NOCOPY(t) #define MESSAGE(t) -#include "types.h" +#include "include/types.h" #undef TYPE #undef TYPE_STRAYDATA #undef TYPE_NONDETERMINISTIC @@ -302,7 +302,7 @@ int main(int argc, const char **argv) #define TYPE_FEATUREFUL_NOCOPY(t) dencoders[T_STRINGIFY(t)] = new DencoderImplFeaturefulNoCopy(false, false); #define TYPE_NOCOPY(t) dencoders[T_STRINGIFY(t)] = new DencoderImplNoFeatureNoCopy(false, false); #define MESSAGE(t) dencoders[T_STRINGIFY(t)] = new MessageDencoderImpl; -#include "types.h" +#include "include/types.h" #undef TYPE #undef TYPE_STRAYDATA #undef TYPE_NONDETERMINISTIC