| Age | Commit message (Collapse) | Author | 
|---|
|  |  | 
|  |  | 
|  | It was broken for MSVC where isnan doesn't work with
fast math. Fall back to `fpclassify'.
Adjust usages. | 
|  |  | 
|  | Adjust usages. | 
|  |  | 
|  |  | 
|  | We heavily used "volatile bool" to check if the thread
loop should stop. But this functionality is already
provided by Qt5's QThread::requestInterruption.
In other cases, "volatile" is wonderfully
underspecified so it's better to ditch its usage in
favor of std::atomic<t>. At the time we don't appear to
be using the "volatile" keyword except when calling
win32's Interlocked*() family of functions as
necessary.
In freetrackclient's header the "volatile" qualifier
was used as part of a typedef. This doesn't work. Use
it as part of data declaration. | 
|  |  | 
|  | - use clamp util function
- only sleep until the next datagram arrives
- check data for NaN before accepting | 
|  | On success, bind() function returns true. So while(!should_quit) loop was always skipped. | 
|  | Adjust usages. | 
|  |  | 
|  | Closes #224 |