Skip to content

Commit 3e67d48

Browse files
committed
[FOLD] cleanup comments
1 parent ad2a0ef commit 3e67d48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

clang/include/clang/Sema/Sema.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4101,8 +4101,8 @@ class Sema final : public SemaBase {
41014101
/// (or member function template). The exception-specification was parsed
41024102
/// after the method itself was declared.
41034103
void actOnDelayedExceptionSpecification(
4104-
Decl *D, ExceptionSpecificationType EST,
4105-
SourceRange SpecificationRange, ArrayRef<ParsedType> DynamicExceptions,
4104+
Decl *D, ExceptionSpecificationType EST, SourceRange SpecificationRange,
4105+
ArrayRef<ParsedType> DynamicExceptions,
41064106
ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr);
41074107

41084108
class InheritedConstructorInfo;

clang/lib/Sema/SemaDeclCXX.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19190,12 +19190,12 @@ void Sema::actOnDelayedExceptionSpecification(
1919019190
// Check the exception specification.
1919119191
llvm::SmallVector<QualType, 4> Exceptions;
1919219192
FunctionProtoType::ExceptionSpecInfo ESI;
19193-
checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions,
19193+
checkExceptionSpecification(/*IsTopLevel=*/true, EST, DynamicExceptions,
1919419194
DynamicExceptionRanges, NoexceptExpr, Exceptions,
1919519195
ESI);
1919619196

1919719197
// Update the exception specification on the function type.
19198-
Context.adjustExceptionSpec(FD, ESI, /*AsWritten*/ true);
19198+
Context.adjustExceptionSpec(FD, ESI, /*AsWritten=*/true);
1919919199

1920019200
if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
1920119201
if (MD->isStatic())

0 commit comments

Comments
 (0)