Browse Source

Whitespace cleanup.

tags/2021-05-28
jules 12 years ago
parent
commit
abde049bf0
3 changed files with 1 additions and 10 deletions
  1. +1
    -1
      modules/juce_core/memory/juce_ScopedPointer.h
  2. +0
    -8
      modules/juce_core/native/juce_posix_SharedCode.h
  3. +0
    -1
      modules/juce_core/text/juce_StringArray.cpp

+ 1
- 1
modules/juce_core/memory/juce_ScopedPointer.h View File

@@ -214,7 +214,7 @@ private:
ScopedPointer<MyClass> m (new MyClass()); // Compiles OK ScopedPointer<MyClass> m (new MyClass()); // Compiles OK
It's probably best to use the latter form when writing your object declarations anyway, as
It's probably best to use the latter form when writing your object declarations anyway, as
this is a better representation of the code that you actually want the compiler to produce. this is a better representation of the code that you actually want the compiler to produce.
*/ */
JUCE_DECLARE_NON_COPYABLE (ScopedPointer) JUCE_DECLARE_NON_COPYABLE (ScopedPointer)


+ 0
- 8
modules/juce_core/native/juce_posix_SharedCode.h View File

@@ -23,14 +23,6 @@
============================================================================== ==============================================================================
*/ */
/*
This file contains posix routines that are common to both the Linux and Mac builds.
It gets included directly in the cpp files for these platforms.
*/
//==============================================================================
CriticalSection::CriticalSection() noexcept CriticalSection::CriticalSection() noexcept
{ {
pthread_mutexattr_t atts; pthread_mutexattr_t atts;


+ 0
- 1
modules/juce_core/text/juce_StringArray.cpp View File

@@ -23,7 +23,6 @@
============================================================================== ==============================================================================
*/ */
//==============================================================================
StringArray::StringArray() noexcept StringArray::StringArray() noexcept
{ {
} }


Loading…
Cancel
Save