Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

#include errors detected based on information provided by the configurationProvider setting

I keep getting three errors when I try including a header file that looks like this:

#include <iostream>
#include <"maximum.h"> // *** Header file that is getting the three errors ***

These are the errors I am getting:

#include errors detected. based on information provided by the configurationProvider setting.
cannot open source file ""maximum.h""
'"maximum.h"' file not found

Here, is a link to a solution I tried out. That didn’t solve the problem for me. Could anyone help me out? Thanks.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You are trying to find file .../"maximum.h" which obviously in not existing.

Use either <maximum.h> which first will search your file inside compiler directories or "maximum.h" which first will search near your current file.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading