回答編集履歴
3
加筆
answer
CHANGED
@@ -3,4 +3,6 @@
|
|
3
3
|
vector<future<int>> async_result;
|
4
4
|
>> の間を空けましょう。
|
5
5
|
vector<future<int> > async_result;
|
6
|
-
・・・違ったらごめん^^;
|
6
|
+
・・・違ったらごめん^^;
|
7
|
+
参考
|
8
|
+
[C++で簡単非同期処理](http://qiita.com/termoshtt/items/d3cb7fe226cdd498d2ef)
|
2
加筆
answer
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
#include <vector>は?
|
2
|
+
あと
|
1
3
|
vector<future<int>> async_result;
|
2
4
|
>> の間を空けましょう。
|
3
5
|
vector<future<int> > async_result;
|
1
加筆
answer
CHANGED
@@ -1,3 +1,4 @@
|
|
1
1
|
vector<future<int>> async_result;
|
2
2
|
>> の間を空けましょう。
|
3
|
-
vector<future<int> > async_result;
|
3
|
+
vector<future<int> > async_result;
|
4
|
+
・・・違ったらごめん^^;
|