tree-sitter/src/compiler/rule.cc
2015-10-12 19:21:56 -07:00

15 lines
244 B
C++

#include "compiler/rule.h"
#include <memory>
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