Skip to content

Commit 4472cb7

Browse files
authored
Clean up stylistic, unncecessary semicolons.
1 parent b9ab2f1 commit 4472cb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cores/arduino/Tone.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Tone {
6666
}
6767
}
6868
}
69-
};
69+
}
7070

7171
FspTimer Tone::tone_timer;
7272
int Tone::channel = -1;
@@ -89,12 +89,12 @@ void tone(pin_size_t pin, unsigned int frequency, unsigned long duration = 0) {
8989
Tone* t = new Tone(pin, frequency, duration);
9090
active_tone = t;
9191
t->start();
92-
};
92+
}
9393

9494
void noTone(pin_size_t __attribute__((unused)) pin) {
9595
if (active_tone) {
9696
active_tone->stop();
9797
delete active_tone;
9898
active_tone = nullptr;
9999
}
100-
};
100+
}

0 commit comments

Comments
 (0)