mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 21:12:25 +02:00
Added custom implementation of strtol()
(issue #465)
`char` is now treated as an integral type (issue #337, #370)
This commit is contained in:
@ -63,6 +63,9 @@ TEST_F(JsonVariant_Storage_Tests, Double) {
|
||||
TEST_F(JsonVariant_Storage_Tests, Float) {
|
||||
testNumericType<float>();
|
||||
}
|
||||
TEST_F(JsonVariant_Storage_Tests, Char) {
|
||||
testNumericType<char>();
|
||||
}
|
||||
TEST_F(JsonVariant_Storage_Tests, SChar) {
|
||||
testNumericType<signed char>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user