tree-sitter/src/compiler/rule.cc

16 lines
244 B
C++
Raw Normal View History

#include "compiler/rule.h"
#include <memory>
2013-11-12 08:17:19 -08:00
namespace tree_sitter {
2014-03-09 23:51:33 -07:00
using std::ostream;
using std::string;
2014-03-09 19:49:35 -07:00
bool Rule::operator!=(const Rule &other) const {
return !this->operator==(other);
}
Rule::~Rule() {}
} // namespace tree_sitter