Skip to content

Commit 58f546c

Browse files
committed
Test commit. Remove trailing whitespace.
llvm-svn: 176111
1 parent db77c4a commit 58f546c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/ADT/StringRef.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ namespace llvm {
5757
// integer works around this bug.
5858
static size_t min(size_t a, size_t b) { return a < b ? a : b; }
5959
static size_t max(size_t a, size_t b) { return a > b ? a : b; }
60-
60+
6161
// Workaround memcmp issue with null pointers (undefined behavior)
6262
// by providing a specialized version
6363
static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) {
6464
if (Length == 0) { return 0; }
6565
return ::memcmp(Lhs,Rhs,Length);
6666
}
67-
67+
6868
public:
6969
/// @name Constructors
7070
/// @{
@@ -387,7 +387,7 @@ namespace llvm {
387387
Start = min(Start, Length);
388388
return StringRef(Data + Start, min(N, Length - Start));
389389
}
390-
390+
391391
/// Return a StringRef equal to 'this' but with the first \p N elements
392392
/// dropped.
393393
StringRef drop_front(unsigned N = 1) const {

0 commit comments

Comments
 (0)