1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Removed some superfluous consts from definitions

This commit is contained in:
Tom Poole 2023-09-20 12:28:25 +01:00
parent 1eea4766ce
commit 7d45d498b9
47 changed files with 120 additions and 119 deletions

View file

@ -48,7 +48,7 @@ public:
The deviceIndex is an index into the array returned by findAvailableDevices().
*/
static AudioCDBurner* openDevice (const int deviceIndex);
static AudioCDBurner* openDevice (int deviceIndex);
/** Destructor. */
~AudioCDBurner();
@ -158,7 +158,7 @@ public:
private:
//==============================================================================
AudioCDBurner (const int deviceIndex);
AudioCDBurner (int deviceIndex);
class Pimpl;
std::unique_ptr<Pimpl> pimpl;

View file

@ -61,7 +61,7 @@ public:
@returns a new AudioCDReader object, or nullptr if it couldn't be created. The
caller will be responsible for deleting the object returned.
*/
static AudioCDReader* createReaderForCD (const int index);
static AudioCDReader* createReaderForCD (int index);
//==============================================================================
/** Destructor. */
@ -126,7 +126,7 @@ public:
@returns an array of sample positions of any index points found (not including
the index that marks the start of the track)
*/
Array<int> findIndexesInTrack (const int trackNumber);
Array<int> findIndexesInTrack (int trackNumber);
/** Returns the CDDB id number for the CD.
It's not a great way of identifying a disc, but it's traditional.