我正在尝试使用std :: map,但是每次尝试构建时都会失败。我已经包含了我遇到的这些奇怪的错误,希望您能说出我出了错的地方。使用Visual Studio默认标题。
代码:
#include <map>
#include <set>
#include <string>
#include "pch.h"
#include <iostream>
#include <utility>
int main()
{
std::map < int, int > x = {};
std::cout << "Hello World!\n";
return 0;
}
标题:
#ifndef PCH_H
#define PCH_H
// TODO: add headers that you want to pre-compile here
#endif //PCH_H