-
-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Description
String(long long int) and String(unsigned long long int) are not defined for relevant platforms, so String() is unable to parse 64-bit integers. A minimal non-working example would be:
#include <Arduino.h>
void setup() {
String(1LL); // String(1L) compiles
}
void loop() {
}Which produces an error call of overloaded 'String(long long int)' is ambiguous.
Metadata
Metadata
Assignees
Labels
No labels