From d9ab25329e2b564f71359bcb07d032516df112a2 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 26 Jul 2018 00:07:32 +0800 Subject: [PATCH] tools/ceph_dencoder: use full path for including headers Signed-off-by: Kefu Chai --- src/tools/ceph_dencoder.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/ceph_dencoder.cc b/src/tools/ceph_dencoder.cc index 68cdc142b8c8b..74f3ca34f6847 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 -- 2.39.5