mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Make a comparator's argument `const'. This fixes the build for MSVC 9.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127245 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f88befd9ee
commit
86e4eeb6c7
@ -36,7 +36,7 @@ struct CompEnd {
|
||||
bool operator()(SlotIndex A, const LiveRange &B) const {
|
||||
return A < B.end;
|
||||
}
|
||||
bool operator()(const LiveRange &A, SlotIndex B) const {
|
||||
bool operator()(const LiveRange &A, const SlotIndex B) const {
|
||||
return A.end < B;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user