[llvm-commits] CVS: llvm/include/llvm/ADT/APInt.h
Zhou Sheng
zhousheng00 at gmail.com
Mon Mar 19 19:18:33 PDT 2007
Changes in directory llvm/include/llvm/ADT:
APInt.h updated: 1.44 -> 1.45
---
Log message:
Correct the name: isStrictPositive --> isStrictlyPositive.
---
Diffs of the changes: (+1 -1)
APInt.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/ADT/APInt.h
diff -u llvm/include/llvm/ADT/APInt.h:1.44 llvm/include/llvm/ADT/APInt.h:1.45
--- llvm/include/llvm/ADT/APInt.h:1.44 Mon Mar 19 15:36:48 2007
+++ llvm/include/llvm/ADT/APInt.h Mon Mar 19 21:18:16 2007
@@ -376,7 +376,7 @@
/// 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;
}
More information about the llvm-commits
mailing list