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

Remove more get_s.

This commit is contained in:
Thomas Harte
2025-02-26 20:26:06 -05:00
parent 47bd4dade5
commit ff86cbd48e
55 changed files with 132 additions and 132 deletions
+2 -2
View File
@@ -440,11 +440,11 @@ STX::STX(const std::string &file_name) : file_(file_name) {
}
}
HeadPosition STX::get_maximum_head_position() const {
HeadPosition STX::maximum_head_position() const {
return HeadPosition(track_count_ + 1); // Same issue as MSA; must fix!
}
int STX::get_head_count() const {
int STX::head_count() const {
return head_count_;
}