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
|
Determine the bank's origin
|
||||||
|
|
||||||
@param The bank to query
|
@param bank The bank to query
|
||||||
@return The origin of the bank
|
@return The origin of the bank
|
||||||
*/
|
*/
|
||||||
uInt16 bankOrigin(uInt16 bank) const;
|
uInt16 bankOrigin(uInt16 bank) const;
|
||||||
|
|
|
@ -165,7 +165,7 @@ class Device : public Serializable
|
||||||
|
|
||||||
@return The access counters as comma separated string
|
@return The access counters as comma separated string
|
||||||
*/
|
*/
|
||||||
virtual string getAccessCounters() const { return ""; };
|
virtual string getAccessCounters() const { return ""; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
|
@ -536,7 +536,7 @@ class TIA : public Device
|
||||||
|
|
||||||
@return The access counters as comma separated string
|
@return The access counters as comma separated string
|
||||||
*/
|
*/
|
||||||
string getAccessCounters() const;
|
string getAccessCounters() const override;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue