スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2589: ':': スコープ解決演算子 (::) の右側にあるトークンは使えません。
ソース(バグ有り):
#include <queue>
#include <iostream>
int main( )
{ |
ソース(修正済み):
#include <queue>
#include <iostream>
int main( )
{ |
スポンサード リンク