]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tools/ceph-dencoder: include types.h with full path 23290/head
authorKefu Chai <kchai@redhat.com>
Fri, 27 Jul 2018 15:41:46 +0000 (23:41 +0800)
committerKefu Chai <kchai@redhat.com>
Fri, 27 Jul 2018 17:57:17 +0000 (01:57 +0800)
it's a regression introduced by d9ab25329e2b564f71359bcb07d032516df112a2

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/tools/ceph-dencoder/ceph_dencoder.cc

index 74f3ca34f6847c52b119633a0de8daa7a10a8e61..f8b8fe39994f11adf8f466b6dd9e75905ed684e2 100644 (file)
@@ -33,7 +33,7 @@
 #define TYPE_FEATUREFUL_NOCOPY(t)
 #define TYPE_NOCOPY(t)
 #define MESSAGE(t)
-#include "include/types.h"
+#include "tools/ceph-dencoder/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 "include/types.h"
+#include "tools/ceph-dencoder/types.h"
 #undef TYPE
 #undef TYPE_STRAYDATA
 #undef TYPE_NONDETERMINISTIC