X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FADT%2FStringRef.h;h=34caeee801a2f477975492907df7867c42ea0527;hp=414fbe4a6756b5011ce4e5df55cec1d8ea09a427;hb=f41971f6e7f9e5ba0c590c7e35e2c1af0cd38c69;hpb=eb2f352d0ffe950a4cf0238397df329ae2af2a27 diff --git a/include/llvm/ADT/StringRef.h b/include/llvm/ADT/StringRef.h index 414fbe4a675..34caeee801a 100644 --- a/include/llvm/ADT/StringRef.h +++ b/include/llvm/ADT/StringRef.h @@ -474,7 +474,7 @@ namespace llvm { /// Split into substrings around the occurrences of a separator string. /// /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most - /// \p MaxSplit splits are done and consequently <= \p MaxSplit + /// \p MaxSplit splits are done and consequently <= \p MaxSplit + 1 /// elements are added to A. /// If \p KeepEmpty is false, empty strings are not added to \p A. They /// still count when considering \p MaxSplit @@ -492,7 +492,7 @@ namespace llvm { /// Split into substrings around the occurrences of a separator character. /// /// Each substring is stored in \p A. If \p MaxSplit is >= 0, at most - /// \p MaxSplit splits are done and consequently <= \p MaxSplit + /// \p MaxSplit splits are done and consequently <= \p MaxSplit + 1 /// elements are added to A. /// If \p KeepEmpty is false, empty strings are not added to \p A. They /// still count when considering \p MaxSplit