From 3a85b29e2a01c72a52eb2c89315b9646c0c23d5d Mon Sep 17 00:00:00 2001 From: Adrian Thurston Date: Sat, 13 Apr 2013 15:08:26 +0000 Subject: fixed typedef error --- colm/input.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/colm/input.h b/colm/input.h index 6a65385c..f5b39b4d 100644 --- a/colm/input.h +++ b/colm/input.h @@ -87,7 +87,6 @@ typedef struct _RunBuf RunBuf *newRunBuf(); typedef struct _StreamImpl StreamImpl; -typedef struct ColmLocation Location; struct StreamFuncs { @@ -95,7 +94,7 @@ struct StreamFuncs int (*getData)( StreamImpl *ss, char *dest, int length ); - int (*consumeData)( StreamImpl *ss, int length, Location *loc ); + int (*consumeData)( StreamImpl *ss, int length, struct ColmLocation *loc ); int (*undoConsumeData)( StreamImpl *ss, const char *data, int length ); struct ColmTree *(*consumeTree)( StreamImpl *ss ); -- cgit v1.2.1