@@ -130,8 +130,8 @@ class SwiftDispatcher {
130130 // If the AST node was not emitted yet, then the emission is dispatched to a corresponding
131131 // visitor (see `visit(T *)` methods below).
132132 template <typename E>
133- requires std::constructible_from<Handle, E>
134- TrapLabelOf<E> fetchLabel ( const E& e, swift::Type type = {}) {
133+ requires std::constructible_from<Handle, E> TrapLabelOf<E> fetchLabel ( const E& e,
134+ swift::Type type = {}) {
135135 if constexpr (std::constructible_from<bool , const E&>) {
136136 if (!e) {
137137 // this will be treated on emission
@@ -163,8 +163,7 @@ class SwiftDispatcher {
163163 }
164164
165165 template <typename E>
166- requires std::constructible_from<Handle, E*>
167- TrapLabelOf<E> fetchLabel (const E& e) {
166+ requires std::constructible_from<Handle, E*> TrapLabelOf<E> fetchLabel (const E& e) {
168167 return fetchLabel (&e);
169168 }
170169
@@ -328,10 +327,7 @@ class SwiftDispatcher {
328327 virtual void visit (const swift::CapturedValue* capture) = 0;
329328
330329 template <typename T>
331- requires (!std::derived_from<T, swift::TypeRepr>)
332- void visit (const T* e, swift::Type) {
333- visit (e);
334- }
330+ requires (!std::derived_from<T, swift::TypeRepr>) void visit (const T* e, swift::Type) { visit (e); }
335331
336332 const swift::SourceManager& sourceManager;
337333 SwiftExtractorState& state;
0 commit comments