NamedSendable::GetName() is now const qualified

Change-Id: Ie9e4daac4473e44f4248385f992da750501443e5
This commit is contained in:
Tyler Veness
2015-07-09 01:27:56 -07:00
parent eb7d55fd59
commit 451c4e81c3
7 changed files with 16 additions and 12 deletions

View File

@@ -122,7 +122,7 @@ void Subsystem::ConfirmCommand() {
}
}
std::string Subsystem::GetName() { return m_name; }
std::string Subsystem::GetName() const { return m_name; }
std::string Subsystem::GetSmartDashboardType() const { return "Subsystem"; }