mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-27 12:57:50 +02:00
Const correctness fix for optionlist
This commit is contained in:
@ -25,7 +25,7 @@ ConfigManager config;
|
||||
struct DeviceInfo {
|
||||
RtAudio::DeviceInfo info;
|
||||
int id;
|
||||
bool operator==(const struct DeviceInfo& other) {
|
||||
bool operator==(const struct DeviceInfo& other) const {
|
||||
return other.id == id;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user