スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2027: 認識できない型 'type_info' が使われています。predefined C++ types (compiler internal)(147): note: 'type_info' の宣言を確認してください
ソース(バグ有り):
#include <stdio.h>
int main()
{ |
ソース(修正済み):
#include <stdio.h>
#include <typeinfo>
int main()
{ |
スポンサード リンク