スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2819: クラス 'std::basic_ostream<char,std::char_traits<char>>' にはオーバーロードされたメンバー 'operator ->' がありません。C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\iosfwd(679): note: 'std::basic_ostream<char,std::char_traits<char>>' の宣言を確認してください
ソース(バグ有り):
#include <iostream> #include <string> #include <map> using namespace std; int main() { |
ソース(修正済み):
#include <iostream> #include <string> #include <map> using namespace std; int main() { |
スポンサード リンク