Remove operator '<=' overload for SourceLocation.

llvm-svn: 73933
This commit is contained in:
Argyrios Kyrtzidis 2009-06-23 00:42:21 +00:00
parent dfc5dca1e5
commit c035bf688a
1 changed files with 0 additions and 4 deletions

View File

@ -145,10 +145,6 @@ inline bool operator<(const SourceLocation &LHS, const SourceLocation &RHS) {
return LHS.getRawEncoding() < RHS.getRawEncoding();
}
inline bool operator<=(const SourceLocation &LHS, const SourceLocation &RHS) {
return LHS.getRawEncoding() <= RHS.getRawEncoding();
}
/// SourceRange - a trival tuple used to represent a source range.
class SourceRange {
SourceLocation B;