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:
authorMichael Copland <mjbcopland@gmail.com>2016-12-09 17:36:25 +0300
committerMichael Copland <mjbcopland@gmail.com>2016-12-09 17:36:25 +0300
commit25ba094c813b4964423383749d918e5fbdb99b2f (patch)
tree8c7b043ffe8114e5010a75dcc475e7adad34824e
parent149f36aa23b73bb2c777d6e973368f3c8718ca7b (diff)
Fix CRGBArray operator=
-rw-r--r--pixelset.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pixelset.h b/pixelset.h
index 345b6071..4808e331 100644
--- a/pixelset.h
+++ b/pixelset.h
@@ -295,6 +295,7 @@ class CRGBArray : public CPixelView<CRGB> {
CRGB rawleds[SIZE];
public:
CRGBArray() : CPixelView<CRGB>(rawleds, SIZE) {}
+ using CPixelView::operator=;
};
#endif