<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic aCC warning message in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662620#M102561</link>
    <description>I'm getting following warning while compiling &lt;BR /&gt;test program.&lt;BR /&gt;&lt;BR /&gt;Details:&lt;BR /&gt;aCC Version : aCC: HP aC++/ANSI C B3910B A.06.00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Program Name : test.cpp&lt;BR /&gt;#include &lt;IOSTREAM.H&gt;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt;cout &amp;lt;&amp;lt; "This is rajeesh testing for compiler";&lt;BR /&gt;        return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Warning :&lt;BR /&gt;&lt;BR /&gt;"/opt/aCC/include_std/iostream_compat/iostream.h", line 4: warning #3105-D:&lt;BR /&gt;          #warning directive: &lt;IOSTREAM.H&gt; is being replaced by &lt;IOSTREAM&gt;&lt;BR /&gt;          followed by "using namespace std;"&lt;BR /&gt;  #warning &lt;IOSTREAM.H&gt; is being replaced by &lt;IOSTREAM&gt; followed by "using namespace std;"&lt;BR /&gt;   ^&lt;BR /&gt;========================&lt;BR /&gt;&lt;BR /&gt;Ofcourse program is getting compiled with &lt;BR /&gt;warning. Please let me know why it's happening?&lt;BR /&gt;The same works fine on aCC 3.33,3.60 etc..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajeesh&lt;BR /&gt;&lt;/IOSTREAM&gt;&lt;/IOSTREAM.H&gt;&lt;/IOSTREAM&gt;&lt;/IOSTREAM.H&gt;&lt;/IOSTREAM.H&gt;</description>
    <pubDate>Wed, 02 Nov 2005 03:59:43 GMT</pubDate>
    <dc:creator>Rajeesh_1</dc:creator>
    <dc:date>2005-11-02T03:59:43Z</dc:date>
    <item>
      <title>aCC warning message</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662620#M102561</link>
      <description>I'm getting following warning while compiling &lt;BR /&gt;test program.&lt;BR /&gt;&lt;BR /&gt;Details:&lt;BR /&gt;aCC Version : aCC: HP aC++/ANSI C B3910B A.06.00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Program Name : test.cpp&lt;BR /&gt;#include &lt;IOSTREAM.H&gt;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt;cout &amp;lt;&amp;lt; "This is rajeesh testing for compiler";&lt;BR /&gt;        return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Warning :&lt;BR /&gt;&lt;BR /&gt;"/opt/aCC/include_std/iostream_compat/iostream.h", line 4: warning #3105-D:&lt;BR /&gt;          #warning directive: &lt;IOSTREAM.H&gt; is being replaced by &lt;IOSTREAM&gt;&lt;BR /&gt;          followed by "using namespace std;"&lt;BR /&gt;  #warning &lt;IOSTREAM.H&gt; is being replaced by &lt;IOSTREAM&gt; followed by "using namespace std;"&lt;BR /&gt;   ^&lt;BR /&gt;========================&lt;BR /&gt;&lt;BR /&gt;Ofcourse program is getting compiled with &lt;BR /&gt;warning. Please let me know why it's happening?&lt;BR /&gt;The same works fine on aCC 3.33,3.60 etc..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajeesh&lt;BR /&gt;&lt;/IOSTREAM&gt;&lt;/IOSTREAM.H&gt;&lt;/IOSTREAM&gt;&lt;/IOSTREAM.H&gt;&lt;/IOSTREAM.H&gt;</description>
      <pubDate>Wed, 02 Nov 2005 03:59:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662620#M102561</guid>
      <dc:creator>Rajeesh_1</dc:creator>
      <dc:date>2005-11-02T03:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: aCC warning message</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662621#M102562</link>
      <description>This is because, newer versions of aCC follows strict ANSI standards. You can get more accurate answers at,  &lt;A href="http://h21007.www2.hp.com/dspp/ml/ml_MailingLists_IDX/1,1275,,00.html#24" target="_blank"&gt;http://h21007.www2.hp.com/dspp/ml/ml_MailingLists_IDX/1,1275,,00.html#24&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Wed, 02 Nov 2005 04:24:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662621#M102562</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-11-02T04:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: aCC warning message</title>
      <link>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662622#M102563</link>
      <description>Try&lt;BR /&gt;&lt;BR /&gt;#include &lt;IOSTREAM&gt;&lt;BR /&gt;using namespace std;&lt;BR /&gt;int main()&lt;BR /&gt;{&lt;BR /&gt;cout &amp;lt;&amp;lt; "This is rajeesh testing for compiler";&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;This meets the ANSI C++ standard.&lt;/IOSTREAM&gt;</description>
      <pubDate>Wed, 02 Nov 2005 04:47:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/acc-warning-message/m-p/3662622#M102563</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-11-02T04:47:38Z</dc:date>
    </item>
  </channel>
</rss>

