-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Closed
Labels
Status: SolvedThe issue has been resolved and requires no further action.The issue has been resolved and requires no further action.
Milestone
Description
Description:
Even in the latest v2.0.0 String()
is still unable to print 64-bit integers. A minimal non-working example would be:
Sketch:
#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
Status: SolvedThe issue has been resolved and requires no further action.The issue has been resolved and requires no further action.
Type
Projects
Status
Done