mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
style: Remove superfluous 'const' on getInfo()
was here before, but is an easy fix for a clang-tidy warning
This commit is contained in:
@ -181,7 +181,7 @@ static bool status_gt(const std::string& a, const std::string& b) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const std::tuple<uint8_t, float, std::string, float, uint16_t, float> waybar::modules::Battery::getInfos() {
|
||||
std::tuple<uint8_t, float, std::string, float, uint16_t, float> waybar::modules::Battery::getInfos() {
|
||||
std::lock_guard<std::mutex> guard(battery_list_mutex_);
|
||||
|
||||
try {
|
||||
|
Reference in New Issue
Block a user