diff options
Diffstat (limited to 'src/wast-parser.cc')
-rw-r--r-- | src/wast-parser.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc index d804e21e..a3cc7a66 100644 --- a/src/wast-parser.cc +++ b/src/wast-parser.cc @@ -14,20 +14,20 @@ * limitations under the License. */ -#include "src/wast-parser.h" - -#include "src/binary-reader-ir.h" -#include "src/binary-reader.h" -#include "src/cast.h" -#include "src/expr-visitor.h" -#include "src/make-unique.h" -#include "src/resolve-names.h" -#include "src/stream.h" -#include "src/utf8.h" -#include "src/validator.h" +#include "wabt/wast-parser.h" + +#include "wabt/binary-reader-ir.h" +#include "wabt/binary-reader.h" +#include "wabt/cast.h" +#include "wabt/expr-visitor.h" +#include "wabt/make-unique.h" +#include "wabt/resolve-names.h" +#include "wabt/stream.h" +#include "wabt/utf8.h" +#include "wabt/validator.h" #define WABT_TRACING 0 -#include "src/tracing.h" +#include "wabt/tracing.h" #define EXPECT(token_type) CHECK_RESULT(Expect(TokenType::token_type)) |