forked from OSchip/llvm-project
Correct the name: isStrictPositive --> isStrictlyPositive.
llvm-svn: 35201
This commit is contained in:
parent
cc411d66d0
commit
4852dc1cd5
|
@ -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…
Reference in New Issue