vscode namespace "std" has no member "string"C/C++(135) 제거
vscode에서 std::string val; 등에서 string 밑에 적색으로 밑줄이 그어져서 경고를 표시하는 경우가 있습니다. 경고 메시지는 namespace "std" has no member "string"C/C++(135) 입니다. 이런 불필요한 경고를 제거하려면, .vscode 폴더 밑에 위치한 settings.json 파일을 다음과 같이 수정합니다. { "files.associations": { "*.cc": "cpp", "string": "cpp", "__bit_reference": "cpp", "__bits": "cpp", "__config": "cpp", "__debug": "cpp", "_..
2024.08.13