Use consistent formatting of header comments.

Correct format:
```
//===--- Name of file - Description ----------------------------*- Lang -*-===//
```

Notes:
* Comment line should be exactly 80 chars.
* Padding: Pad with dashes after "Description" to reach 80 chars.
* "Name of file", "Description" and "Lang" are all optional.
* In case of missing "Lang": drop the "-*-" markers.
* In case of missing space: drop one, two or three dashes before "Name of file".
This commit is contained in:
practicalswift
2016-01-04 23:00:53 +01:00
parent 6dd70c933d
commit ca92efc8e6
25 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
//===-- SpeculativeDevirtualizer.cpp -- Speculatively devirtualize calls --===//
//===--- SpeculativeDevirtualizer.cpp - Speculatively devirtualize calls --===//
//
// This source file is part of the Swift.org open source project
//