compile error with threads

This commit is contained in:
Hieu Hoang 2011-11-24 00:48:32 +07:00
parent 21f3f19aaa
commit aec299c1c9
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,10 @@
#include "PrefixTreeMap.h"
#include "TypeDef.h"
#ifdef WITH_THREADS
#include <boost/thread.hpp>
#endif
namespace Moses
{
void GenericCandidate::readBin(FILE* f)

View File

@ -6,10 +6,6 @@
#include<iostream>
#include <map>
#ifdef WITH_THREADS
#include <boost/thread/mutex.hpp>
#endif
#include "PrefixTree.h"
#include "File.h"