From fa59b63ab2762af1cf124955e69fead013cfc438 Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 1 Apr 2015 02:54:14 -0400 Subject: [PATCH] [fix] type name/import --- src/tokens.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tokens.h b/src/tokens.h index 913ae9a3..d673b1a1 100644 --- a/src/tokens.h +++ b/src/tokens.h @@ -8,7 +8,6 @@ extern "C" { #endif #include "klib/khash.h" -#include "sds/sds.h" #include "collections.h" #include "string_utils.h" #include "token_types.h" @@ -23,7 +22,7 @@ typedef struct token { VECTOR_INIT(token_array, token_t) typedef struct tokenized_string { - cstring_array_t *str; + cstring_array *str; token_array *tokens; } tokenized_string_t;