add #include <atomic> to src/udpTracker.hpp

Without the explicit include of <atomic> from std i get the following error:
```
In file included from /tmp/nix-build-udpt-2017-09-27/src/udpTracker.hpp:166:14: error: 'atomic_bool' in namespace 'std' does not name a type
         std::atomic_bool m_shouldRun;
              ^~~~~~~~~~~
```
This commit is contained in:
Felix Richter 2017-09-27 13:19:58 +02:00 committed by GitHub
parent f34fcdbd04
commit ccc9ad434b

View file

@ -28,6 +28,7 @@
#include <sstream> #include <sstream>
#include <list> #include <list>
#include <ctime> #include <ctime>
#include <atomic>
#include <thread> #include <thread>
#include <boost/program_options.hpp> #include <boost/program_options.hpp>