尽管我在“MSVS 2017”中将项目的语言设置为“ISO C++ 最新草案标准(/std:c++latest)”,但在包含到我的项目时遇到了问题。任何帮助将不胜感激。
值得一提的是,当我使用包括 GCC 和 Clang 在内的其他编译器时,不会发生这种情况。
#include "pch.h"
#include <iostream>
#include <memory>
#include <experimental/propagate_const> <======= the problem is here
class widget {
class impl;
std::experimental::propagate_const<std::unique_ptr<impl>> pImpl;
public:
};
错误 C1083 无法打开包含文件:'experimental/propagate_const':没有这样的文件或目录