Add missing header includes
For some reason, xcode tolerated these missing includes. Travis CI doesn't.
This commit is contained in:
parent
9f0a395c0d
commit
7c57c521af
5 changed files with 5 additions and 1 deletions
|
|
@ -5,6 +5,7 @@
|
|||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <memory>
|
||||
|
||||
namespace tree_sitter {
|
||||
namespace rules {
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#include "tree_sitter/compiler.h"
|
||||
#include "./follow_sets.h"
|
||||
#include "item.h"
|
||||
#include <algorithm>
|
||||
|
||||
namespace tree_sitter {
|
||||
using std::set;
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#define __TreeSitter__rule__
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
|
||||
namespace tree_sitter {
|
||||
namespace rules {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#define __tree_sitter__sym__
|
||||
|
||||
#include "rule.h"
|
||||
#include <map>
|
||||
#include <utility>
|
||||
|
||||
namespace tree_sitter {
|
||||
namespace rules {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#include "tree_sitter/runtime.h"
|
||||
#include <string>
|
||||
#include "string.h"
|
||||
|
||||
using std::string;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue