mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[gardening] Use consistent spacing after if, for and while
This commit is contained in:
@@ -201,7 +201,7 @@ private:
|
||||
// If the executable has been deleted the last column will be '(deleted)'.
|
||||
StringRef deleted = StringRef("(deleted)");
|
||||
|
||||
while(getdelim(&line, &size, '\n', fp) != -1) {
|
||||
while (getdelim(&line, &size, '\n', fp) != -1) {
|
||||
StringRef entry = StringRef(line).rsplit('\n').first;
|
||||
auto addrRange = entry.split(' ').first.split('-');
|
||||
unsigned long long low = strtoull(addrRange.first.str().c_str(),
|
||||
|
||||
Reference in New Issue
Block a user