Browse Source

Clarified a couple of comments

tags/2021-05-28
jules 7 years ago
parent
commit
3b8c533db5
2 changed files with 5 additions and 2 deletions
  1. +4
    -1
      modules/juce_audio_basics/effects/juce_IIRFilter.h
  2. +1
    -1
      modules/juce_gui_basics/drawables/juce_DrawablePath.h

+ 4
- 1
modules/juce_audio_basics/effects/juce_IIRFilter.h View File

@@ -203,7 +203,10 @@ protected:
float v1 = 0, v2 = 0;
bool active = false;
IIRFilter& operator= (const IIRFilter&);
// The exact meaning of an assignment operator would be ambiguous since the filters are
// stateful. If you want to copy the coefficients, then just use setCoefficients().
IIRFilter& operator= (const IIRFilter&) = delete;
JUCE_LEAK_DETECTOR (IIRFilter)
};


+ 1
- 1
modules/juce_gui_basics/drawables/juce_DrawablePath.h View File

@@ -48,7 +48,7 @@ public:
//==============================================================================
/** Changes the path that will be drawn.
@see setFillColour, setStrokeType
@see setFill, setStrokeType
*/
void setPath (const Path& newPath);


Loading…
Cancel
Save