mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-24 17:01:07 +00:00
[scudo] Fix definition of canCache() function
The called member function has boolean type, change this function to match Differential Revision: https://reviews.llvm.org/D122631
This commit is contained in:
parent
92897217fa
commit
d0eeb0fba0
@ -459,7 +459,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
uptr canCache(uptr Size) { return Cache.canCache(Size); }
|
||||
bool canCache(uptr Size) { return Cache.canCache(Size); }
|
||||
|
||||
bool setOption(Option O, sptr Value) { return Cache.setOption(O, Value); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user