mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Cleanup: Remove redundant inlines
This commit is contained in:
parent
2f45814bfc
commit
4cf66d6522
45 changed files with 169 additions and 205 deletions
|
|
@ -19,7 +19,7 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
static inline void blurDataTriplets (uint8* d, int num, const int delta) noexcept
|
||||
static void blurDataTriplets (uint8* d, int num, const int delta) noexcept
|
||||
{
|
||||
uint32 last = d[0];
|
||||
d[0] = (uint8) ((d[0] + d[delta] + 1) / 3);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue