Add "override" qualifier to several headers.

clang on Mac generates warnings for these.
This commit is contained in:
Peter Johnson
2017-08-20 09:46:28 -07:00
parent ae675ae4e1
commit 05d1cfa276
4 changed files with 19 additions and 19 deletions

View File

@@ -46,12 +46,12 @@ class DigitalOutput : public DigitalSource,
void ValueChanged(ITable* source, llvm::StringRef key,
std::shared_ptr<nt::Value> value, bool isNew) override;
void UpdateTable();
void StartLiveWindowMode();
void StopLiveWindowMode();
std::string GetSmartDashboardType() const;
void InitTable(std::shared_ptr<ITable> subTable);
std::shared_ptr<ITable> GetTable() const;
void UpdateTable() override;
void StartLiveWindowMode() override;
void StopLiveWindowMode() override;
std::string GetSmartDashboardType() const override;
void InitTable(std::shared_ptr<ITable> subTable) override;
std::shared_ptr<ITable> GetTable() const override;
private:
int m_channel;