Correct the name: isStrictPositive --> isStrictlyPositive.

llvm-svn: 35201
This commit is contained in:
Zhou Sheng 2007-03-20 02:18:16 +00:00
parent cc411d66d0
commit 4852dc1cd5
1 changed files with 1 additions and 1 deletions

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