1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Formatting: Add missing newlines

This commit is contained in:
reuk 2023-09-27 12:43:20 +01:00
parent 8f62a61099
commit dd30569b3e
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
2 changed files with 2 additions and 3 deletions

View file

@ -123,4 +123,4 @@ JUCE_END_IGNORE_WARNINGS_MSVC
#include "sources/juce_ToneGeneratorAudioSource.h" #include "sources/juce_ToneGeneratorAudioSource.h"
#include "synthesisers/juce_Synthesiser.h" #include "synthesisers/juce_Synthesiser.h"
#include "audio_play_head/juce_AudioPlayHead.h" #include "audio_play_head/juce_AudioPlayHead.h"
#include "utilities/juce_AudioWorkgroup.h" #include "utilities/juce_AudioWorkgroup.h"

View file

@ -234,5 +234,4 @@ bool operator== (const FixedSizeFunction<len, T>& fn, std::nullptr_t) { return !
template <size_t len, typename T> template <size_t len, typename T>
bool operator== (std::nullptr_t, const FixedSizeFunction<len, T>& fn) { return ! (fn != nullptr); } bool operator== (std::nullptr_t, const FixedSizeFunction<len, T>& fn) { return ! (fn != nullptr); }
} // namespace juce
}