From 40107f8490a31d0f0243dfe84f26f605cf1e5860 Mon Sep 17 00:00:00 2001 From: "tarao-scala-steward[bot]" <162550418+tarao-scala-steward[bot]@users.noreply.github.com> Date: Sun, 19 Jan 2025 00:32:05 +0000 Subject: [PATCH] Reformat with scalafmt 3.8.5 Executed command: scalafmt --non-interactive --- .../scala/com/github/tarao/record4s/InternalMacros.scala | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/core/src/main/scala/com/github/tarao/record4s/InternalMacros.scala b/modules/core/src/main/scala/com/github/tarao/record4s/InternalMacros.scala index 26dc1a5..0f70675 100644 --- a/modules/core/src/main/scala/com/github/tarao/record4s/InternalMacros.scala +++ b/modules/core/src/main/scala/com/github/tarao/record4s/InternalMacros.scala @@ -599,12 +599,17 @@ private[record4s] object InternalMacros { transparent inline def internal(using i: InternalMacros): i.type = i - inline def withInternal[T](using Quotes, InternalMacros)( + inline def withInternal[T](using + Quotes, + InternalMacros, + )( inline block: InternalMacros ?=> T, ): T = block(using summon[InternalMacros]) - inline def withTyping[T](using Quotes)( + inline def withTyping[T](using + Quotes, + )( inline block: (MacroContext, InternalMacros) ?=> T, ): T = { given MacroContext = MacroContext.Typing