スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2784: 'bool std::operator >(const std::basic_string<_Elem,_Traits,_Alloc> &,const _Elem *)': テンプレート 引数を 'const std::basic_string<_Elem,_Traits,_Alloc> &' に対して 'std::basic_ostream<char,std::char_traits<char>>' から減少できませんでしたC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xstring(2566): note: 'std::operator >' の宣言を確認してください
ソース(バグ有り):
#include <iostream> #include <string> using namespace std; |
ソース(修正済み):
#include <iostream> #include <string> using namespace std; |
スポンサード リンク