summaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/feature.h b/src/feature.h
index b406ae1b..d2a5891c 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -17,7 +17,7 @@
#ifndef WABT_FEATURE_H_
#define WABT_FEATURE_H_
-#include "common.h"
+#include "src/common.h"
namespace wabt {
@@ -29,13 +29,13 @@ class Features {
#define WABT_FEATURE(variable, flag, help) \
bool variable##_enabled() const { return variable##_enabled_; }
-#include "feature.def"
+#include "src/feature.def"
#undef WABT_FEATURE
private:
#define WABT_FEATURE(variable, flag, help) \
bool variable##_enabled_ = false;
-#include "feature.def"
+#include "src/feature.def"
#undef WABT_FEATURE
};