mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-23 05:29:23 +00:00
Resolves further build warnings.
This commit is contained in:
parent
cc95e587db
commit
2ef6d4327c
@ -189,7 +189,6 @@ void WD1770::posit_event(int new_event_type) {
|
||||
interesting_event_mask_ &= ~new_event_type;
|
||||
}
|
||||
|
||||
Status new_status;
|
||||
BEGIN_SECTION()
|
||||
|
||||
// Wait for a new command, branch to the appropriate handler.
|
||||
|
@ -23,11 +23,11 @@ namespace Utility {
|
||||
*/
|
||||
class CharacterMapper {
|
||||
public:
|
||||
virtual ~CharacterMapper() {}
|
||||
|
||||
/// @returns The EndSequence-terminated sequence of keys that would cause @c character to be typed.
|
||||
virtual uint16_t *sequence_for_character(char character) = 0;
|
||||
|
||||
virtual CharacterMaper() {}
|
||||
|
||||
protected:
|
||||
typedef uint16_t KeySequence[16];
|
||||
|
||||
|
@ -45,6 +45,7 @@ std::shared_ptr<Storage::Disk::Track> GetFMTrackWithSectors(const std::vector<co
|
||||
class Encoder {
|
||||
public:
|
||||
Encoder(std::vector<bool> &target);
|
||||
virtual ~Encoder() {}
|
||||
virtual void add_byte(uint8_t input) = 0;
|
||||
virtual void add_index_address_mark() = 0;
|
||||
virtual void add_ID_address_mark() = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user