]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tools/ceph_dencoder: use full path for including headers 23228/head
authorKefu Chai <kchai@redhat.com>
Wed, 25 Jul 2018 16:07:32 +0000 (00:07 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 25 Jul 2018 16:10:20 +0000 (00:10 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/tools/ceph_dencoder.cc

index 68cdc142b8c8bd0e418daacf199d7b540db8e57b..74f3ca34f6847c52b119633a0de8daa7a10a8e61 100644 (file)
@@ -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<t>(false, false);
 #define TYPE_NOCOPY(t) dencoders[T_STRINGIFY(t)] = new DencoderImplNoFeatureNoCopy<t>(false, false);
 #define MESSAGE(t) dencoders[T_STRINGIFY(t)] = new MessageDencoderImpl<t>;
-#include "types.h"
+#include "include/types.h"
 #undef TYPE
 #undef TYPE_STRAYDATA
 #undef TYPE_NONDETERMINISTIC