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:
parent
1eea4766ce
commit
7d45d498b9
47 changed files with 120 additions and 119 deletions
|
|
@ -92,8 +92,8 @@ public:
|
|||
This method does not check the range and results in undefined behaviour
|
||||
in case i < 0 or i >= size().
|
||||
*/
|
||||
OSCArgument& operator[] (const int i) noexcept;
|
||||
const OSCArgument& operator[] (const int i) const noexcept;
|
||||
OSCArgument& operator[] (int i) noexcept;
|
||||
const OSCArgument& operator[] (int i) const noexcept;
|
||||
|
||||
/** Returns a pointer to the first OSCArgument in the OSCMessage object.
|
||||
This method is provided for compatibility with standard C++ iteration mechanisms.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue