Skip to content

Commit 1071543

Browse files
committed
AST: Remove control characters from CaptureInfo.h
1 parent 76ebf23 commit 1071543

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/swift/AST/CaptureInfo.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class CaptureInfo {
170170

171171
ArrayRef<CapturedValue> getCaptures() const {
172172
// FIXME: Ideally, everywhere that synthesizes a function should include
173-
// its capture info.
173+
// its capture info.
174174
if (!hasBeenComputed())
175175
return None;
176176
return StorageAndFlags.getPointer()->getCaptures();
@@ -188,7 +188,7 @@ class CaptureInfo {
188188
/// \returns true if the function captures any generic type parameters.
189189
bool hasGenericParamCaptures() const {
190190
// FIXME: Ideally, everywhere that synthesizes a function should include
191-
// its capture info.
191+
// its capture info.
192192
if (!hasBeenComputed())
193193
return false;
194194
return StorageAndFlags.getInt().contains(Flags::HasGenericParamCaptures);
@@ -202,7 +202,7 @@ class CaptureInfo {
202202
/// \returns the captured dynamic Self type, if any.
203203
DynamicSelfType *getDynamicSelfType() const {
204204
// FIXME: Ideally, everywhere that synthesizes a function should include
205-
// its capture info.
205+
// its capture info.
206206
if (!hasBeenComputed())
207207
return nullptr;
208208
return StorageAndFlags.getPointer()->getDynamicSelfType();
@@ -214,7 +214,7 @@ class CaptureInfo {
214214

215215
OpaqueValueExpr *getOpaqueValue() const {
216216
// FIXME: Ideally, everywhere that synthesizes a function should include
217-
// its capture info.
217+
// its capture info.
218218
if (!hasBeenComputed())
219219
return nullptr;
220220
return StorageAndFlags.getPointer()->getOpaqueValue();

0 commit comments

Comments
 (0)