1
は、だから私は不完全な型がエラーを許可されていないとタプルは
不完全な型が
#include "stdafx.h"
#include <iostream>
#include <conio.h>
#include <ctype.h>
#include <sstream>
using namespace std;
int main()
{
std::tuple<int, bool, float> human = {345, true, 2.33};
// Incomplete type is not allowed
system("pause");
return 0;
}
任意の手掛かり許可されていないこのエラーが直面しているのですか?
'#include'? –
Arunmu
必要なヘッダー以外のすべてのヘッダーが含まれています。 :) – erip
Un-related:コードを移植可能にするために 'system(" pause ");'を 'std :: cin.get();'に変更してください。 – vsoftco