1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Commutes cross-platform #pragma marks to //MARK:s.

This commit is contained in:
Thomas Harte
2017-11-12 15:59:11 -05:00
parent 3550196bed
commit 5aef81cf24
19 changed files with 78 additions and 78 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ Drive &Controller::get_drive() {
return *drive_.get();
}
#pragma mark - Drive::EventDelegate
// MARK: - Drive::EventDelegate
void Controller::process_event(const Track::Event &event) {
switch(event.type) {
@@ -55,7 +55,7 @@ void Controller::process_write_completed() {
// Provided for subclasses to override.
}
#pragma mark - PLL control and delegate
// MARK: - PLL control and delegate
void Controller::set_expected_bit_length(Time bit_length) {
bit_length_ = bit_length;