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:
Zhou Sheng 2007-03-20 02:18:16 +00:00
parent b9174dd5dc
commit e51ffcf27f

View File

@ -376,7 +376,7 @@ public:
/// This just tests if the value of this APInt is strictly positive (> 0).
/// @brief Determine if this APInt Value is strictly positive.
inline bool isStrictPositive() const {
inline bool isStrictlyPositive() const {
return isPositive() && (*this) != 0;
}