Don't define MIN and MAX in platform headers#1901
Merged
zackees merged 2 commits intoFastLED:masterfrom Mar 11, 2025
Merged
Conversation
I'm trying to compile this for Teensy 3.2 and getting a few warnings with platformio
```
In file included from .pio/libdeps/teensy32/FastLED/src/platforms/arm/k20/fastled_arm_k20.h:6,
from .pio/libdeps/teensy32/FastLED/src/platforms.h:19,
from .pio/libdeps/teensy32/FastLED/src/FastLED.h:70,
from src/main.cpp:48:
.pio/libdeps/teensy32/FastLED/src/platforms/arm/k20/fastspi_arm_k20.h:40: warning: "MAX" redefined
40 | #define MAX(A, B) (( (A) > (B) ) ? (A) : (B))
|
In file included from .pio/libdeps/teensy32/FastLED/src/fl/str.h:10,
from .pio/libdeps/teensy32/FastLED/src/crgb.hpp:12,
from .pio/libdeps/teensy32/FastLED/src/pixeltypes.h:11,
from .pio/libdeps/teensy32/FastLED/src/cpixel_ledcontroller.h:10,
from .pio/libdeps/teensy32/FastLED/src/controller.h:7,
from .pio/libdeps/teensy32/FastLED/src/FastLED.h:65,
from src/main.cpp:48:
.pio/libdeps/teensy32/FastLED/src/fl/math_macros.h:4: note: this is the location of the previous definition
4 | #define MAX(a,b) ((a)>(b)?(a):(b))
|
In file included from .pio/libdeps/teensy32/FastLED/src/platforms/arm/k20/fastled_arm_k20.h:11,
from .pio/libdeps/teensy32/FastLED/src/platforms.h:19,
from .pio/libdeps/teensy32/FastLED/src/FastLED.h:70,
from src/main.cpp:48:
.pio/libdeps/teensy32/FastLED/src/platforms/arm/k20/clockless_block_arm_k20.h:17: warning: "MIN" redefined
17 | #define MIN(X,Y) (((X)<(Y)) ? (X):(Y))
|
In file included from .pio/libdeps/teensy32/FastLED/src/fl/str.h:10,
from .pio/libdeps/teensy32/FastLED/src/crgb.hpp:12,
from .pio/libdeps/teensy32/FastLED/src/pixeltypes.h:11,
from .pio/libdeps/teensy32/FastLED/src/cpixel_ledcontroller.h:10,
from .pio/libdeps/teensy32/FastLED/src/controller.h:7,
from .pio/libdeps/teensy32/FastLED/src/FastLED.h:65,
from src/main.cpp:48:
.pio/libdeps/teensy32/FastLED/src/fl/math_macros.h:8: note: this is the location of the previous definition
8 | #define MIN(a,b) ((a)<(b)?(a):(b))
|
```
Member
|
Thanks for this |
Contributor
Author
|
no problem! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm trying to compile this for Teensy 3.2 and getting a few warnings with platformio