Browse Source

A couple more fixes for Clang pedantic warnings

tags/2021-05-28
jules 9 years ago
parent
commit
adfe457b64
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      extras/Introjucer/Source/ComponentEditor/jucer_JucerDocument.h
  2. +1
    -1
      extras/Introjucer/Source/Utility/jucer_SlidingPanelComponent.h

+ 1
- 1
extras/Introjucer/Source/ComponentEditor/jucer_JucerDocument.h View File

@@ -172,7 +172,7 @@ private:
void userEditedCpp(); void userEditedCpp();
bool documentAboutToClose (OpenDocumentManager::Document*) override; bool documentAboutToClose (OpenDocumentManager::Document*) override;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JucerDocument);
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JucerDocument)
}; };


+ 1
- 1
extras/Introjucer/Source/Utility/jucer_SlidingPanelComponent.h View File

@@ -78,7 +78,7 @@ private:
Component pageHolder; Component pageHolder;
int currentIndex, dotSize; int currentIndex, dotSize;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SlidingPanelComponent);
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SlidingPanelComponent)
}; };


Loading…
Cancel
Save