forked from bblanchon/ArduinoJson
Fix -Wsign-conversion
on GCC 8 (fixes #1715)
This commit is contained in:
@ -71,7 +71,7 @@ TEST_CASE("JsonVariant::set() when there is enough memory") {
|
||||
|
||||
#ifdef HAS_VARIABLE_LENGTH_ARRAY
|
||||
SECTION("VLA") {
|
||||
int n = 16;
|
||||
size_t n = 16;
|
||||
char str[n];
|
||||
|
||||
strcpy(str, "hello");
|
||||
|
Reference in New Issue
Block a user