[fix] add #include guard to tagger.h

This commit is contained in:
Austin Chu
2017-04-13 13:02:03 -04:00
parent 32c8662f8d
commit a966712e18

View File

@@ -1,5 +1,10 @@
#ifndef TAGGER_H
#define TAGGER_H
#include "string_utils.h" #include "string_utils.h"
#include "tokens.h" #include "tokens.h"
// Arguments: tagger, context, tokenized str, index // Arguments: tagger, context, tokenized str, index
typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t); typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t);
#endif