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>2014-11-27 09:08:48 +0300
committerMark Kriegsman <kriegsman@tr.org>2014-11-27 09:08:48 +0300
commit170d28275ae9728522696357f856148b9554693f (patch)
tree32cf6502bd94e9698a6a81dc06cdde6546658b96
parent770905b264092106c18da218b46d035aa789205a (diff)
Removed 'weak' attribte from forward reference to XY, as it allows (oops) compilation to succeed without an XY function linked in, even when one is needed. I'll switch it back when we start providing a default XY function.
-rw-r--r--colorutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/colorutils.cpp b/colorutils.cpp
index 9e5808fc..13113b28 100644
--- a/colorutils.cpp
+++ b/colorutils.cpp
@@ -353,7 +353,7 @@ CHSV* blend( const CHSV* src1, const CHSV* src2, CHSV* dest, uint16_t count, fra
// Forward declaration of the function "XY" which must be provided by
// the application for use in two-dimensional filter functions.
-uint16_t XY( uint8_t, uint8_t) __attribute__ ((weak));
+uint16_t XY( uint8_t, uint8_t);// __attribute__ ((weak));
// blur1d: one-dimensional blur filter. Spreads light to 2 line neighbors.