Fix warnings from clang.

This commit is contained in:
Stephen Anthony 2020-04-01 09:45:19 -02:30
parent 96131e2f7f
commit 1b1ccf4f39
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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:

View File

@ -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: