Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic include standard (Read 2721 times)
Collin
Newbies
*
Offline


Posts: 1
Joined: Dec 15th, 2012
include standard
Dec 19th, 2012 at 1:35pm
Print Post  
hello, 

FYI, 

i notice when i use #include <blah.h> (note the carats), the VS IDE marks as a potential problem. When I use #include "blah.h", (note the quotes), the VS IDE likes this.  

Note, both compile without issue!.

So far it has been fun using the tools!

Collin
  
Back to top
 
IP Logged
 
txvs_
Junior Member
**
Offline


Posts: 12
Location: Spain
Joined: Sep 11th, 2012
Re: include standard
Reply #1 - Dec 19th, 2012 at 2:29pm
Print Post  
Hi.

The point is that is not  the same <> than "".

From: http://msdn.microsoft.com/en-us/library/36k2cdd4%28v=vs.71%29.aspx

Quoted form

     This form instructs the preprocessor to look for include files in the same directory of the file that contains the #include statement, and then in the directories of any files that include (#include) that file. The preprocessor then searches along the path specified by the /I compiler option, then along paths specified by the INCLUDE environment variable.

Angle-bracket form

     This form instructs the preprocessor to search for include files first along the path specified by the /I compiler option, then, when compiling from the command line, along the path specified by the INCLUDE environment variable.

Regards.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint