Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kriegsman <kriegsman@tr.org>2017-02-22 05:22:10 +0300
committerMark Kriegsman <kriegsman@tr.org>2017-02-22 05:22:10 +0300
commit06f3cdd5a8fd3b81c0426bceea9ce9074cc8bf6b (patch)
tree70f52fe4cc8a308831c66f842adea0fdd648c099
parenta5ed0960b1f43feaa37f3ba88745a79be28c16bf (diff)
Removed an ALWAYS_INLINE because avr-gcc can't be trusted with grown-up tools.
-rw-r--r--lib8tion/math8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib8tion/math8.h b/lib8tion/math8.h
index 23582257..7f062c67 100644
--- a/lib8tion/math8.h
+++ b/lib8tion/math8.h
@@ -433,7 +433,7 @@ LIB8STATIC uint8_t sqrt16(uint16_t x)
/// @param amountOfB - the proportion (0-255) of b to blend
/// @returns a byte value between a and b, inclusive
#if (FASTLED_BLEND_FIXED == 1)
-LIB8STATIC_ALWAYS_INLINE uint8_t blend8( uint8_t a, uint8_t b, uint8_t amountOfB)
+LIB8STATIC uint8_t blend8( uint8_t a, uint8_t b, uint8_t amountOfB)
{
#if BLEND8_C == 1
uint16_t partial;