tree-sitter/src/compiler/rule.cc
Max Brunsfeld e6f3239bef Move stream operator definitions to spec helpers
This is one less thing for users to worry about when compiling and linking
the library itself
2015-09-10 10:12:11 -07:00

15 lines
241 B
C++

#include "compiler/rule.h"
#include <set>
namespace tree_sitter {
using std::ostream;
using std::string;
bool Rule::operator!=(const Rule &other) const {
return !this->operator==(other);
}
Rule::~Rule() {}
} // namespace tree_sitter