diff options
author | Alex Reinking <reinking@google.com> | 2022-09-28 07:24:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 07:24:49 -0700 |
commit | a4a77c18df16d6ee672f2a2564969bc9b2beef3a (patch) | |
tree | e4368558b4b44a7421761341e3b18edbd93f9785 /src/test-binary-reader.cc | |
parent | 520614a5f83878a4d26702a3ad67c44302c2b073 (diff) | |
download | wabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.tar.gz wabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.tar.bz2 wabt-a4a77c18df16d6ee672f2a2564969bc9b2beef3a.zip |
Move headers to include/wabt/ (#1998)
This makes things easier for users and packagers of libwabt.
Diffstat (limited to 'src/test-binary-reader.cc')
-rw-r--r-- | src/test-binary-reader.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test-binary-reader.cc b/src/test-binary-reader.cc index ee206013..b3e3540d 100644 --- a/src/test-binary-reader.cc +++ b/src/test-binary-reader.cc @@ -16,10 +16,10 @@ #include "gtest/gtest.h" -#include "src/binary-reader-nop.h" -#include "src/binary-reader.h" -#include "src/leb128.h" -#include "src/opcode.h" +#include "wabt/binary-reader-nop.h" +#include "wabt/binary-reader.h" +#include "wabt/leb128.h" +#include "wabt/opcode.h" using namespace wabt; |