mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
Correct the name: isStrictPositive --> isStrictlyPositive.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35201 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b9174dd5dc
commit
e51ffcf27f
@ -376,7 +376,7 @@ public:
|
|||||||
|
|
||||||
/// This just tests if the value of this APInt is strictly positive (> 0).
|
/// This just tests if the value of this APInt is strictly positive (> 0).
|
||||||
/// @brief Determine if this APInt Value is strictly positive.
|
/// @brief Determine if this APInt Value is strictly positive.
|
||||||
inline bool isStrictPositive() const {
|
inline bool isStrictlyPositive() const {
|
||||||
return isPositive() && (*this) != 0;
|
return isPositive() && (*this) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user