Added std:: prefix to more C standard library uses (#106)

This commit is contained in:
Tyler Veness
2016-06-19 00:19:45 -07:00
committed by Peter Johnson
parent daa0260a4e
commit cee9b2609d
14 changed files with 69 additions and 68 deletions

View File

@@ -26,7 +26,7 @@ Servo::Servo(uint32_t channel) : SafePWM(channel) {
// Assign defaults for period multiplier for the servo PWM control signal
SetPeriodMultiplier(kPeriodMultiplier_4X);
// printf("Done initializing servo %d\n", channel);
// std::printf("Done initializing servo %d\n", channel);
}
Servo::~Servo() {