[llvm-commits] CVS: llvm/include/llvm/ADT/UniqueVector.h
Jim Laskey
jlaskey at apple.com
Mon Jan 16 15:44:15 PST 2006
Changes in directory llvm/include/llvm/ADT:
UniqueVector.h updated: 1.1 -> 1.2
---
Log message:
Redundant inline keyword.
---
Diffs of the changes: (+1 -1)
UniqueVector.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/ADT/UniqueVector.h
diff -u llvm/include/llvm/ADT/UniqueVector.h:1.1 llvm/include/llvm/ADT/UniqueVector.h:1.2
--- llvm/include/llvm/ADT/UniqueVector.h:1.1 Mon Jan 16 17:29:43 2006
+++ llvm/include/llvm/ADT/UniqueVector.h Mon Jan 16 17:44:03 2006
@@ -62,7 +62,7 @@
/// getVector - Return the ID ordered vector of entries.
///
- inline const typename std::vector<T> &getVector() const { return Vector; }
+ const typename std::vector<T> &getVector() const { return Vector; }
};
} // End of namespace llvm
More information about the llvm-commits
mailing list