-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Labels
Milestone
@cmaglie
Description
This is Issue 884 moved from a Google Code project.
Added by 2012年04月11日T11:57:21.000Z by rob.till...@gmail.com.
Please review that bug for more context and additional comments, but update this bug.
Original labels: Type-Defect, Priority-Medium
Original description
print.cpp contains
size_t Print::println(void) { size_t n = print('\r'); n += print('\n'); return n; }
which can be optimized to
size_t Print::println(void) { return write ("\r\n"); }
It is simpler and it has less call overhead.
For a background discussion, see: