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

Formatting: Improve consistency of static inline word ordering

This commit is contained in:
Anthony Nicholls 2024-07-18 09:27:03 +01:00
parent 18d904c6f3
commit 1b0f45fa96
2 changed files with 2 additions and 2 deletions

View file

@ -175,7 +175,7 @@ private:
std::weak_ptr<SharedObjectType> ptr;
};
inline static Weak& weak()
static inline Weak& weak()
{
static Weak weak;
return weak;

View file

@ -56,7 +56,7 @@ struct ThreadPriorities
};
#endif
inline static constexpr Entry table[]
static inline constexpr Entry table[]
{
#if JUCE_ANDROID
{ Thread::Priority::highest, AndroidThreadPriority::THREAD_PRIORITY_AUDIO },