1
0
mirror of https://github.com/MatMoul/g810-led.git synced 2024-12-23 09:16:11 +00:00

Include cstdint for uint16_t

Starting with GCC 13, cstdint is included by fewer headers and needs
to be explicitly included in help.h, so that uint16_t is defined. See
https://gcc.gnu.org/gcc-13/porting_to.html for details.

Signed-off-by: Stephen Kitt <steve@sk2.org>
This commit is contained in:
Stephen Kitt 2023-06-25 16:34:30 +02:00
parent efa3c35e74
commit 0c74b54399
No known key found for this signature in database
GPG Key ID: 80D302F5886D839C

View File

@ -17,6 +17,7 @@
#ifndef HELP_HELPER #ifndef HELP_HELPER
#define HELP_HELPER #define HELP_HELPER
#include <cstdint>
#include <iostream> #include <iostream>
namespace help { namespace help {