通知
すべてクリア
Topic starter
2008年11月30日 12:44 AM
超初心者ので質問ですので勘弁して下さい。
mapを使用してキーに構造体を指定したところerror C2784が出てどうしても分かりませ
ん。コードは以下です。
struct A {
int x;
int y;
};
typedef std::map<A, std::string> table;
void func(void)
{
A a = {1,2};
string str = test;
table.insert(make_pair(a, str));
}
環境はVC6です。
Topic starter
2008年11月30日 1:51 AM
お騒がせしました、自己解決しました。