Correct the name: isStrictPositive --> isStrictlyPositive.
authorZhou Sheng <zhousheng00@gmail.com>
Tue, 20 Mar 2007 02:18:16 +0000 (02:18 +0000)
committerZhou Sheng <zhousheng00@gmail.com>
Tue, 20 Mar 2007 02:18:16 +0000 (02:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35201 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APInt.h

index aa53790736c852b3b5869ebe19bfedc93d2444da..5f4d6741c5666f197aeb5967ab4c3950591e790b 100644 (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;
   }