私はg ++ 4.4.7でコンパイルしており(現在はそれ以上に進むことはできません)、-std=gnu++0x
3行目の構文を許可するコンパイラスイッチを使用しています。
typedef std::vector<CI_RecordInfo_Pair> CI_RecordInfo_Vector;
typedef std::vector<std::pair<std::string, CI_RecordInfo_Vector*> > MgrBlks;
MgrBlks mgr_n_blks { {"T2M_NAME", NULL} }; // <--- line 59
ただし、コンパイラは次のように不平を言います。
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_pair.h: In constructor 'std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = const char (&)[9], _U2 = long int, _T1 = std::basic_string<char, std::char_traits<char>, std::allocator<char> >, _T2 = CI_RecordInfo_Vector*]':
tom.cpp:59: instantiated from here
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_pair.h:90: error: invalid conversion from 'long int' to 'CI_RecordInfo_Vector*'
「long int」はNULLであり、何らかの理由でそれをポインターに変換できないと思います。しかし、構造体のマップの他の場所では、次のようなものをコンパイルできました
foo["X"] = { NULL, "bar", 12 }; // first element is a pointer
違いはなんですか?