1
2
3
4
5
6 #include <soulng/lexer/Span.hpp>
7
8 namespace soulng { namespace lexer {
9
10 bool operator==(const Span& left, const Span& right)
11 {
12 return left.fileIndex == right.fileIndex && left.line == right.line && left.start == right.start && left.end == right.end;
13 }
14
15 } }