From a966712e18dfc22e53bd85ac440215212c10029e Mon Sep 17 00:00:00 2001 From: Austin Chu Date: Thu, 13 Apr 2017 13:02:03 -0400 Subject: [PATCH] [fix] add #include guard to tagger.h --- src/tagger.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tagger.h b/src/tagger.h index 650c66e0..a41c5b26 100644 --- a/src/tagger.h +++ b/src/tagger.h @@ -1,5 +1,10 @@ +#ifndef TAGGER_H +#define TAGGER_H + #include "string_utils.h" #include "tokens.h" // Arguments: tagger, context, tokenized str, index -typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t); \ No newline at end of file +typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t); + +#endif