[Emesary] Fix compile on Linux.

This commit is contained in:
Scott Giese 2019-06-14 22:11:31 -05:00
parent 098c5b0924
commit 2cbbb29eb5
3 changed files with 5 additions and 4 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

View File

@ -24,7 +24,7 @@
#include <simgear/math/SGMath.hxx>
#include <simgear/misc/sg_path.hxx>
#include <simgear/emesary/emesary.hxx>
#include <simgear/emesary/Emesary.hxx>
#include <simgear/emesary/notifications.hxx>
#include <boost/function.hpp>