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:
authorDaniel Garcia <danielgarcia@gmail.com>2015-02-09 17:42:42 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-02-09 17:42:42 +0300
commit5a8ea5fdc7bb371c92fe7236c307ef00ebb17307 (patch)
tree0c9db64fceef6a1df3fa501fc12461739a5afd02 /colorutils.cpp
parentde83ca911a5d6584455f90df56505e9a5061f85b (diff)
Fix compilation errors surrounding namespace - also rename the namespace, having FastLED::FastLED was proving too ambiguous for teh compiler.
Diffstat (limited to 'colorutils.cpp')
-rw-r--r--colorutils.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/colorutils.cpp b/colorutils.cpp
index a0cfc43f..1960d095 100644
--- a/colorutils.cpp
+++ b/colorutils.cpp
@@ -5,7 +5,7 @@
#include "FastLED.h"
-FASTLED_USING_NAMESPACE
+FASTLED_NAMESPACE_BEGIN
@@ -754,3 +754,5 @@ void nblendPaletteTowardPalette( CRGBPalette16& current, CRGBPalette16& target,
if( changes >= maxChanges) { break; }
}
}
+
+FASTLED_NAMESPACE_END