[Emesary] Fix compile on Linux.

This commit is contained in:
Scott Giese 2019-06-14 21:43:47 -05:00
parent 098c5b0924
commit c0677ad8c5
2 changed files with 4 additions and 3 deletions

View File

@ -21,6 +21,7 @@
*
*---------------------------------------------------------------------------*/
#include <algorithm>
#include <string>
#include <list>
#include <set>

View File

@ -7,14 +7,14 @@
#include <iostream>
#include <simgear/emesary/emesary.hxx>
#include <simgear/emesary/Emesary.hxx>
using std::cout;
using std::cerr;
using std::endl;
std::atomic<int> nthread = 0;
std::atomic<int> noperations = 0;
std::atomic<int> nthread {0};
std::atomic<int> noperations {0};
const int MaxIterations = 9999;
class TestThreadNotification : public simgear::Emesary::INotification