Make include guards pass cpplint
This commit is contained in:
parent
10b1bd0f5c
commit
31a58bc7e4
33 changed files with 112 additions and 112 deletions
|
|
@ -1,14 +1,14 @@
|
|||
#ifndef tree_sitter_parser_h
|
||||
#define tree_sitter_parser_h
|
||||
#ifndef TREE_SITTER_PARSER_H_
|
||||
#define TREE_SITTER_PARSER_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "./runtime.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "tree_sitter/runtime.h"
|
||||
|
||||
//#define TS_DEBUG_PARSE
|
||||
//#define TS_DEBUG_LEX
|
||||
|
|
@ -310,4 +310,4 @@ return ts_parser_tree(parser);
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // TREE_SITTER_PARSER_H_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue