aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-04-04 20:34:44 +0800
committerTeddy <ted.sybil@gmail.com>2014-04-04 20:34:44 +0800
commitca9650190643302b8af46b106230fda877407f07 (patch)
treeea161a1b38ad25d059adecba623e36fafe28b8b7 /ast.h
parentbf77f3bad51ef61f660514b6f72bcd8b68f25154 (diff)
working on type checking
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast.h b/ast.h
index 55a0e8a..bdae049 100644
--- a/ast.h
+++ b/ast.h
@@ -51,7 +51,7 @@ typedef struct CNode {
} ext;
struct CNode *chd, *next;
/* For error reporting */
- struct Location {
+ struct {
int row, col;
} loc;
} CNode;