The problem with using #include <experimental/propagate_const> and MSVC 2017

1.2k Views Asked by At

I have run into a problem with including into my project, in spite of the fact that I have set the language of the project to "ISO C++ Latest Draft Standard (/std:c++latest)" in "MSVS 2017". Any help will be appreciated.

It is worth mentioning that it does not happen when I use another compilers including GCC and 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:

};

Error C1083 Cannot open include file: 'experimental/propagate_const': No such file or directory

0

There are 0 best solutions below