summaryrefslogtreecommitdiff
path: root/src/interpreter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpreter.cc')
-rw-r--r--src/interpreter.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interpreter.cc b/src/interpreter.cc
index 5c9404cc..ad49efab 100644
--- a/src/interpreter.cc
+++ b/src/interpreter.cc
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "interpreter.h"
+#include "src/interpreter.h"
#include <algorithm>
#include <cassert>
@@ -24,8 +24,8 @@
#include <type_traits>
#include <vector>
-#include "cast.h"
-#include "stream.h"
+#include "src/cast.h"
+#include "src/stream.h"
namespace wabt {
namespace interpreter {
@@ -33,7 +33,7 @@ namespace interpreter {
static const char* s_opcode_name[] = {
#define WABT_OPCODE(rtype, type1, type2, mem_size, prefix, code, NAME, text) \
text,
-#include "interpreter-opcode.def"
+#include "src/interpreter-opcode.def"
#undef WABT_OPCODE
"<invalid>",