diff options
| author | Avamander <avamander@gmail.com> | 2021-06-12 09:18:19 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-12 09:18:19 (GMT) |
| commit | 314a8ebba070bd935c795cea2955d494f002797f (patch) | |
| tree | d14d30d29f22f7eb15edd6494ae59afa21084883 /src/displayapp/screens/SystemInfo.cpp | |
| parent | d4f4ed014cecb600a5fb8541cff1f01bf2c46d54 (diff) | |
Changed the namespace of SystemInfo::sortById to avoid a name conflict (#360)
Diffstat (limited to 'src/displayapp/screens/SystemInfo.cpp')
| -rw-r--r-- | src/displayapp/screens/SystemInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index a0b626e..9ff2828 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -198,7 +198,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() { return std::make_unique<Screens::Label>(2, 5, app, label); } -bool sortById(const TaskStatus_t& lhs, const TaskStatus_t& rhs) { +bool SystemInfo::sortById(const TaskStatus_t& lhs, const TaskStatus_t& rhs) { return lhs.xTaskNumber < rhs.xTaskNumber; } |
