File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
modules/squarepine_core/text Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
21
21
// [END_USER_CODE_SECTION]
22
22
23
- #define JUCE_PROJUCER_VERSION 0x80000
23
+ #define JUCE_PROJUCER_VERSION 0x80001
24
24
25
25
//==============================================================================
26
26
#define JUCE_MODULE_AVAILABLE_juce_analytics 1
Original file line number Diff line number Diff line change @@ -677,7 +677,7 @@ namespace details
677
677
{ 0xff5a , 0xff3a }
678
678
};
679
679
680
- juce_wchar toUpperCase (juce_wchar character) noexcept
680
+ inline juce_wchar toUpperCase (juce_wchar character) noexcept
681
681
{
682
682
const auto iter = caseConversionMap.find (character);
683
683
if (iter != std::cend (caseConversionMap))
@@ -686,7 +686,7 @@ namespace details
686
686
return character;
687
687
}
688
688
689
- juce_wchar toLowerCase (juce_wchar character) noexcept
689
+ inline juce_wchar toLowerCase (juce_wchar character) noexcept
690
690
{
691
691
for (const auto & v : caseConversionMap)
692
692
if (v.second == character)
@@ -696,7 +696,7 @@ namespace details
696
696
}
697
697
698
698
template <typename Func>
699
- String toConvertedCase (const String& source, Func func)
699
+ inline String toConvertedCase (const String& source, Func func)
700
700
{
701
701
if (source.isEmpty ())
702
702
return source;
You can’t perform that action at this time.
0 commit comments