スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2178: 'string2' は 'mutable' 指定子で宣言できません
ソース(バグ有り):
#include <mbstring.h> #include <stdio.h> int main() { |
ソース(修正済み):
#include <mbstring.h> #include <stdio.h> int main() { |
スポンサード リンク