スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
warning C4293: '<<': シフト数が負の値であるか、大きすぎます。定義されていない動作です
ソース(バグ有り):
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main()
{ |
ソース(修正済み):
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main()
{ |
スポンサード リンク