mirror of https://github.com/stella-emu/stella.git
Fix warnings from clang.
This commit is contained in:
parent
96131e2f7f
commit
1b1ccf4f39
|
@ -148,7 +148,7 @@ class Cartridge : public Device
|
|||
/**
|
||||
Determine the bank's origin
|
||||
|
||||
@param The bank to query
|
||||
@param bank The bank to query
|
||||
@return The origin of the bank
|
||||
*/
|
||||
uInt16 bankOrigin(uInt16 bank) const;
|
||||
|
|
|
@ -165,7 +165,7 @@ class Device : public Serializable
|
|||
|
||||
@return The access counters as comma separated string
|
||||
*/
|
||||
virtual string getAccessCounters() const { return ""; };
|
||||
virtual string getAccessCounters() const { return ""; }
|
||||
#endif
|
||||
|
||||
protected:
|
||||
|
|
|
@ -536,7 +536,7 @@ class TIA : public Device
|
|||
|
||||
@return The access counters as comma separated string
|
||||
*/
|
||||
string getAccessCounters() const;
|
||||
string getAccessCounters() const override;
|
||||
#endif
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue