Browse Source

Formatting: Use nested namespace

develop
Anthony Nicholls 2 years ago
parent
commit
b0aa8dbb7c
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      modules/juce_core/native/juce_SharedCode_intel.h

+ 2
- 7
modules/juce_core/native/juce_SharedCode_intel.h View File

@@ -20,12 +20,9 @@
==============================================================================
*/
namespace juce
{
#if JUCE_INTEL && ! JUCE_NO_INLINE_ASM
namespace SystemStatsHelpers
namespace juce::SystemStatsHelpers
{
static void doCPUID (uint32& a, uint32& b, uint32& c, uint32& d, uint32 type)
@@ -101,8 +98,6 @@ static void getCPUInfo (bool& hasMMX,
hasAVX512VPOPCNTDQ = (c & (1u << 14)) != 0;
}
} // namespace SystemStatsHelpers
} // namespace juce::SystemStatsHelpers
#endif
} // namespace juce

Loading…
Cancel
Save