diff options
Diffstat (limited to 'include/llvm/ADT/ArrayRef.h')
-rw-r--r-- | include/llvm/ADT/ArrayRef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/ArrayRef.h b/include/llvm/ADT/ArrayRef.h index 0ab96ccb9a..1c5470d678 100644 --- a/include/llvm/ADT/ArrayRef.h +++ b/include/llvm/ADT/ArrayRef.h @@ -73,10 +73,10 @@ namespace llvm { iterator begin() const { return Data; } iterator end() const { return Data + Length; } - /// empty - Check if the string is empty. + /// empty - Check if the array is empty. bool empty() const { return Length == 0; } - /// size - Get the string size. + /// size - Get the array size. size_t size() const { return Length; } /// front - Get the first element. |