From 3f36dd68a46dd6073431525504a8753c60354f6f Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 16 Jan 2025 15:11:01 -0800 Subject: [PATCH] Add comment for boolean literal function argument Co-authored-by: Jon Ross-Perkins --- toolchain/check/handle_class.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/check/handle_class.cpp b/toolchain/check/handle_class.cpp index c6d2d9fc439b1..5f87719d73aac 100644 --- a/toolchain/check/handle_class.cpp +++ b/toolchain/check/handle_class.cpp @@ -725,7 +725,7 @@ static auto CheckCompleteClassType(Context& context, Parse::NodeId node_id, // one. The functions should be allowed to have different signatures // as long as we can synthesize a suitable thunk. CheckFunctionTypeMatches(context, override_fn, fn, - SemIR::SpecificId::Invalid, false); + SemIR::SpecificId::Invalid, /*check_syntax=*/false); fn_decl_id = override_fn_decl_id; } }