From 1dd2b3c90e98513682330086671626dc4dd2848a Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Wed, 28 Aug 2024 13:43:13 +0100 Subject: [PATCH] Formatting: Whitespace --- modules/juce_graphics/detail/juce_Ranges.h | 2 +- modules/juce_graphics/fonts/juce_GlyphArrangement.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_graphics/detail/juce_Ranges.h b/modules/juce_graphics/detail/juce_Ranges.h index 483439b72b..7507242709 100644 --- a/modules/juce_graphics/detail/juce_Ranges.h +++ b/modules/juce_graphics/detail/juce_Ranges.h @@ -985,7 +985,7 @@ public: auto begin() const { - auto wrappers = std::apply ([](auto&&... args) + auto wrappers = std::apply ([] (auto&&... args) { return createIteratorWrappers (std::forward (args)...); }, items); diff --git a/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp b/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp index 6615a4108a..40456ebd20 100644 --- a/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp +++ b/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp @@ -204,7 +204,7 @@ void GlyphArrangement::addJustifiedText (const Font& font, const String& text, .withJustification (horizontalLayout) .withFont (font) .withLeading (1.0f + leading / font.getHeight()) - .withBaselineAtZero () + .withBaselineAtZero() .withTrailingWhitespacesShouldFit (false) }; addGlyphsFromShapedText (*this, st, x, y);