From: Chris Lattner Date: Tue, 15 Feb 2011 00:23:53 +0000 (+0000) Subject: fix comments X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=04b2f0d99feb9cdf87eb8f35483816d757d170dd;p=oota-llvm.git fix comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125543 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/ArrayRef.h b/include/llvm/ADT/ArrayRef.h index 0ab96ccb9ab..1c5470d678b 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.