1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 10:50:58 +01:00
This commit is contained in:
Oxan van Leeuwen 2023-03-06 00:02:36 +01:00 committed by GitHub
parent 7466773ac8
commit b8538c2c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
#pragma once #pragma once
// Helper macro to define a version code, whos evalue can be compared against other version codes. // Helper macro to define a version code, whose value can be compared against other version codes.
#define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch)) #define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch))