summaryrefslogtreecommitdiff
path: root/src/binary-reader-interpreter.cc
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-08-30 00:10:25 -0700
committerGitHub <noreply@github.com>2017-08-30 00:10:25 -0700
commit040b8f9d80a67fe6746304a262cd57f71e9a4e3e (patch)
tree59bff4b5a77b32e07b3fbab2b2021a692b2edab8 /src/binary-reader-interpreter.cc
parent781e08e3ef857eb738fe54e6ef426717f99f5364 (diff)
downloadwabt-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/binary-reader-interpreter.cc')
-rw-r--r--src/binary-reader-interpreter.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/binary-reader-interpreter.cc b/src/binary-reader-interpreter.cc
index ee51c07d..a5086c78 100644
--- a/src/binary-reader-interpreter.cc
+++ b/src/binary-reader-interpreter.cc
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "binary-reader-interpreter.h"
+#include "src/binary-reader-interpreter.h"
#include <cassert>
#include <cinttypes>
@@ -22,12 +22,12 @@
#include <cstdio>
#include <vector>
-#include "binary-reader-nop.h"
-#include "cast.h"
-#include "error-handler.h"
-#include "interpreter.h"
-#include "type-checker.h"
-#include "writer.h"
+#include "src/binary-reader-nop.h"
+#include "src/cast.h"
+#include "src/error-handler.h"
+#include "src/interpreter.h"
+#include "src/type-checker.h"
+#include "src/writer.h"
namespace wabt {