Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 20, 2008, 7:08:57 PM (17 years ago)
Author:
landauf
Message:

TclThreadManager should now work with old and new versions of boost.
tested with 1_33_1, 1_34_1, 1_35_0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/TclThreadManager.h

    r1276 r1337  
    3636#include <boost/thread/mutex.hpp>
    3737#include <boost/thread/condition.hpp>
     38#include <boost/thread/thread.hpp>
    3839
    3940#include "CorePrereqs.h"
     
    119120            boost::condition fullQueueCondition_;
    120121            boost::condition orxonoxEvalCondition_;
     122#if (BOOST_VERSION >= 103500)
    121123            boost::thread::id threadID_;
     124#else
     125            boost::thread threadID_;
     126#endif
    122127    };
    123128
Note: See TracChangeset for help on using the changeset viewer.