[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:
Dominic Chen 2022-03-28 21:52:04 -07:00
parent 92897217fa
commit d0eeb0fba0

View File

@ -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); }