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/ir-util.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/ir-util.cc')
-rw-r--r-- | src/ir-util.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ir-util.cc b/src/ir-util.cc index 099ee8c3..ee9262cc 100644 --- a/src/ir-util.cc +++ b/src/ir-util.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "src/ir-util.h" +#include "wabt/ir-util.h" #include <algorithm> #include <array> @@ -27,16 +27,16 @@ #include <string> #include <vector> -#include "src/cast.h" -#include "src/common.h" -#include "src/expr-visitor.h" -#include "src/ir-util.h" -#include "src/ir.h" -#include "src/literal.h" -#include "src/stream.h" +#include "wabt/cast.h" +#include "wabt/common.h" +#include "wabt/expr-visitor.h" +#include "wabt/ir-util.h" +#include "wabt/ir.h" +#include "wabt/literal.h" +#include "wabt/stream.h" #define WABT_TRACING 0 -#include "src/tracing.h" +#include "wabt/tracing.h" using namespace wabt; |