重複の可能性:
未定義の名前空間「boost」
誰でもそのエラーを処理するのを手伝ってくれますか? どうもありがとう
#include "Threads.h"
#include "Interthread.h"
#include <pthread.h>
void* task1(void *arg) {
// do stuff
}
void task2() {
// do stuff
}
int main () {
//using namespace boost;
Thread thread_1;
thread_1.start (void *(*task1)(void *arg),NULL);
// Thread thread_2 = thread(task2);
// do other stuff
//thread_2.join();
//thread_1.join ();
return 0;
}
エラー
Test.cpp:18:21: エラー: 'void' の前にプライマリ式が必要です</p>