aboutsummaryrefslogtreecommitdiff
path: root/var.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-09-24 17:04:21 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-09-24 17:04:21 +0900
commit645cca7910dccf4811dbf65d4c83a068a83b48c9 (patch)
tree8204a536105fed0aed8cb290391758321b89bbce /var.h
parent319b64989c2c6c0f7ea8bd5c585c16c35e3114e8 (diff)
downloadkati-645cca7910dccf4811dbf65d4c83a068a83b48c9.tar.gz
Rename value.* and ast.* to expr.* and stmt.*, respectively
Diffstat (limited to 'var.h')
-rw-r--r--var.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/var.h b/var.h
index e2eddc7..3bae262 100644
--- a/var.h
+++ b/var.h
@@ -19,10 +19,10 @@
#include <unordered_map>
#include <unordered_set>
-#include "ast.h"
+#include "expr.h"
+#include "stmt.h"
#include "string_piece.h"
#include "symtab.h"
-#include "value.h"
using namespace std;