forked from OSchip/llvm-project
Remove operator '<=' overload for SourceLocation.
llvm-svn: 73933
This commit is contained in:
parent
dfc5dca1e5
commit
c035bf688a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue