We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_IRREMOTEESP8266_VERSION_VAL
1 parent 61c19e2 commit 1f00aebCopy full SHA for 1f00aeb
src/IRremoteESP8266.h
@@ -61,7 +61,7 @@
61
#define _IRREMOTEESP8266_VERSION_PATCH 2
62
// Macro to convert version info into an integer
63
#define _IRREMOTEESP8266_VERSION_VAL(major, minor, patch) \
64
- ((major << 16) | (minor << 8) | (patch))
+ (((major) << 16) | ((minor) << 8) | (patch))
65
// Macro to convert literal into a string
66
#define MKSTR_HELPER(x) #x
67
#define MKSTR(x) MKSTR_HELPER(x)
0 commit comments