diff options
author | Ben Smith <binjimin@gmail.com> | 2017-08-30 00:10:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 00:10:25 -0700 |
commit | 040b8f9d80a67fe6746304a262cd57f71e9a4e3e (patch) | |
tree | 59bff4b5a77b32e07b3fbab2b2021a692b2edab8 /src/interpreter.cc | |
parent | 781e08e3ef857eb738fe54e6ef426717f99f5364 (diff) | |
download | wabt-040b8f9d80a67fe6746304a262cd57f71e9a4e3e.tar.gz wabt-040b8f9d80a67fe6746304a262cd57f71e9a4e3e.tar.bz2 wabt-040b8f9d80a67fe6746304a262cd57f71e9a4e3e.zip |
Always include quoted headers like "src/foo.h" (#601)
This way the names won't conflict with other headers with the same name.
Diffstat (limited to 'src/interpreter.cc')
-rw-r--r-- | src/interpreter.cc | 8 |
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>", |