MSVC patch for atomic_bool init

This commit is contained in:
Charles J. Cliffe 2016-02-05 20:50:33 -05:00
parent f9ee9b9145
commit fcfebf3d46

View File

@ -2,8 +2,8 @@
#include <cstdlib> #include <cstdlib>
#include <algorithm> #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() { SDRDeviceInfo::~SDRDeviceInfo() {