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

@@ -252,7 +252,7 @@ void Scheduler::UpdateTable() {
}
}
std::string Scheduler::GetName() { return "Scheduler"; }
std::string Scheduler::GetName() const { return "Scheduler"; }
std::string Scheduler::GetType() const { return "Scheduler"; }