<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Oct 30, 2009, at 1:43 PM, John Thompson wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>Here's another go at __has_include and __has_include_next for your review.</div> <div> </div> <div>-John<br clear="all"></div></blockquote></div><br><div>In the documentation, please add an explicit "to test for this feature, use #if defined(__has_include)" at the bottom of the section.</div><div><br></div><div>Minor style suggestion, instead of :</div><div><br></div><div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 10px/normal Menlo; ">+  // Get the result value.  true means the file exists.</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 10px/normal Menlo; ">+  Result = (File ? true : false);</div><div><font class="Apple-style-span" face="Menlo" size="2"><span class="Apple-style-span" style="font-size: 10px;"><br></span></font></div><div><font class="Apple-style-span" face="Menlo" size="2"><span class="Apple-style-span" style="font-size: 10px;">How about:</span></font></div><div><font class="Apple-style-span" face="Menlo" size="2"><span class="Apple-style-span" style="font-size: 10px;"><br></span></font></div><div><font class="Apple-style-span" face="Menlo" size="2"><span class="Apple-style-span" style="font-size: 10px;"><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 10px/normal Menlo; ">+  // Get the result value.  Result = true means the file exists.</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 10px/normal Menlo; ">+  Result = File != 0;</div><div><br></div><div><br></div><div>Otherwise, looks great! Please apply, thanks John!</div><div><br></div><div>-Chris</div><div><br></div></span></font></div></div></body></html>