mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-04 23:14:53 -04:00
MSVC patch for atomic_bool init
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
#include <cstdlib>
|
||||
#include <algorithm>
|
||||
|
||||
SDRDeviceInfo::SDRDeviceInfo() : name(""), serial(""), available(false), remote(false), manual(false), active(false), soapyDevice(nullptr) {
|
||||
|
||||
SDRDeviceInfo::SDRDeviceInfo() : name(""), serial(""), available(false), remote(false), manual(false), soapyDevice(nullptr) {
|
||||
active.store(false);
|
||||
}
|
||||
|
||||
SDRDeviceInfo::~SDRDeviceInfo() {
|
||||
|
||||
Reference in New Issue
Block a user