スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2955: 'std::map': クラス テンプレート を使用するには テンプレート 引数リストが必要ですC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(72): note: 'std::map' の宣言を確認してください
ソース(バグ有り):
#include <iostream> #include <string> #include <map> using namespace std; int main() { |
ソース(修正済み):
#include <iostream> #include <string> #include <map> using namespace std; int main() { |
スポンサード リンク