Woolfrey / software_robot_library

Custom classes for robot control.
GNU General Public License v3.0
2 stars 1 forks source link

Remove instances of `std::endl` #95

Closed Woolfrey closed 9 months ago

Woolfrey commented 9 months ago

Apparently it is faster to use:

std::cout << "\n";

to terminate rather than:

std::cout << std::endl;

Need to check:

Woolfrey commented 9 months ago

Almost zero instances of std::endl found.

Retained std::cerr << std::endl;. Need to double-check if this is necessary.