Fixes to allow Compilation using VC++ 12

Some minor fixes and tweaks to allow compilation under Visual C++ 12.
This doesn't include changes that I need to make to the build
generation.
This commit is contained in:
Chris Motch
2015-01-24 22:01:47 -05:00
parent f1f71c6080
commit 1ed7d95193
5 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -262,7 +262,7 @@ void SDRThread::threadMain() {
double time_slice = (double) n_read / (double) sampleRate;
seconds += time_slice;
if (iqDataOutQueue != NULL) {
if (iqDataOutQueue.load() != NULL) {
iqDataOutQueue.load()->push(dataOut);
}
}